forked from NOAA-EMC/PyGSI
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
63 lines (59 loc) · 1.55 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
[metadata]
name = PyGSI
version = 1.0.0
description = Tools to read and filter through GSI diagnostic files.
long_description = file: README.md
long_description_content_type = text/markdown
author = NOAA-EMC
author_email = [email protected]
keywords = NOAA, EMC
home_page = https://github.com/noaa-emc/PyGSI
license = GNU Lesser General Public License
classifiers =
Development Status :: 1 - Beta
Intended Audience :: Developers
Intended Audience :: Science/Research
License :: OSI Approved :: GNU Lesser General Public License
Natural Language :: English
Operating System :: OS Independent
Programming Language :: Python
Programming Language :: Python :: 3
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Topic :: Software Development :: Libraries :: Python Modules
Operating System :: OS Independent
Typing :: Typed
project_urls =
Bug Tracker = https://github.com/noaa-emc/PyGSI/issues
CI = https://github.com/noaa-emc/PyGSI/actions
[options]
zip_safe = False
include_package_data = True
package_dir =
=src
packages = find_namespace:
python_requires = >= 3.6
setup_requires =
setuptools
install_requires =
numpy
scipy
pandas
netcdf4
scikit-learn
matplotlib
cartopy
tests_require =
pytest
[options.packages.find]
where=src
[options.package_data]
* = *.txt, *.md, *.yaml, *.png
[green]
file-pattern = test_*.py
verbose = 2
no-skip-report = true
quiet-stdout = true
run-coverage = true