-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
51 lines (41 loc) · 1.24 KB
/
setup.cfg
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
[metadata]
name = quangis-workflow
version = 0.0.0
author = nsbg
author_email = n.steenbergen@uu.nl
description = Workflow generation for the QuAnGIS project, including the transformation algebra for core concepts of geographical information.
long_description = file: README.md
long_description_content_type = text/markdown
url = https://github.com/quangis/quangis-workflow
project_urls =
Bug Tracker = https://github.com/quangis/quangis-workflow/issues
classifiers =
Programming Language :: Python :: 3
Operating System :: OS Independent
Development Status :: 2 - Pre-Alpha
Topic :: Scientific/Engineering :: GIS
[options]
packages = find:
python_requires = >=3.9
include-package-data = True
[options.package_data]
cct = py.typed
quangis = py.typed, data/*.ttl
[options.entry_points]
console_scripts =
quangis = quangis.cli:main
[pycodestyle]
ignore = E128, W503, E124, W504, E302, E211
# suppresses whining about visual indentation in our multiline lambdas in
# transformation algebra definitions
[mypy]
[mypy-jpype.*]
ignore_missing_imports = True
[mypy-nl.uu.cs.*]
ignore_missing_imports = True
[mypy-rdflib.*]
ignore_missing_imports = True
[mypy-owlrl.*]
ignore_missing_imports = True
[mypy-pyparsing.*]
ignore_missing_imports = True