-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathsetup.cfg
65 lines (60 loc) · 1.5 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
[metadata]
name = wktplot
version = attr: wktplot.__version__
author = Michael Simpson, Gerald Sornsen
author_email = [email protected], [email protected]
description = Well-known-text and shapely object visualiation library
long_description = file: README.md
long_description_content_type = text/markdown
url = https://github.com/FuzzFoundation/WKTPlot
platform = any
license = MIT
keywords = well-known-text, shapely, bokeh, geo-spatial, visualization
classifiers =
License :: OSI Approved :: MIT License
Programming Language :: Python
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Natural Language :: English
Operating System :: OS Independent
Development Status :: 5 - Production/Stable
Intended Audience :: Developers
Topic :: Software Development :: Libraries
[options]
include_package_data = True
package_dir =
=src
packages = find:
python_requires = >= 3.7
test_suite = tests
zip_safe = True
install_requires =
bokeh >= 2.4.2
numpy >= 1.21.5
shapely >= 1.8.1
[options.extras_require]
test =
flake8 == 5.0.4
pytest == 7.2.0
pytest-cov == 4.0.0
pytest-mock == 3.10.0
[options.packages.find]
exclude = tests
where = src
[bdist_wheel]
universal = 1
[flake8]
doctests = True
exclude =
.git,
.eggs,
__pycache__,
build/,
dist/,
setup.py,
venv/,
.github
ignore = W605, E201, E202, E241
max-line-length = 120