-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.cfg
45 lines (42 loc) · 1.2 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
[metadata]
name = pyobistools
version = attr: pyobistools.__version__
description = Python tools for quality-controlling data for publishing to OBIS
long_description = file: README.md
long_description_content_type = text/markdown
license = BSD-3-Clause
license_file = LICENSE
url = https://github.com/cioos-siooc/pyobistools
classifiers =
Development Status :: 5 - Production/Stable
Intended Audience :: Developers
Intended Audience :: Science/Research
Programming Language :: Python
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Topic :: Scientific/Engineering
Topic :: Scientific/Engineering :: GIS
Topic :: Scientific/Engineering :: Information Analysis
[options]
packages = find:
install_requires =
pandas >=1.3.5,<=1.5.3
geopandas
pyworms >=0.2.0,<1.0
pyxylookup
cartopy
tests_require =
pytest
python_requires = >=3.7,<4
[options.packages.find]
exclude = tests
[flake8]
max-line-length = 100
per-file-ignores =
*.py: E265 E501 E221 E203 E201 E124 E202 E241 E251 W293 W291 W504
tests/*.py: F403 F405 E501
exclude =
docs/
src/*.py