forked from NOAA-EMC/wxflow
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
71 lines (64 loc) · 1.97 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
66
67
68
69
70
71
[metadata]
name = wxflow
version = attr: wxflow.__version__
description = Tools for Weather Workflows
long_description = file: README.md
long_description_content_type = text/markdown
author = NOAA/NWS/NCEP/EMC
#author_email = [email protected]
keywords = NOAA, NWS, NCEP, EMC
home_page = https://github.com/noaa-emc/wxflow
license = GNU Lesser General Public License v3 (LGPLv3)
classifiers =
Development Status :: 4 - Beta
Intended Audience :: Developers
Intended Audience :: Science/Research
License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)
Natural Language :: English
Operating System :: OS Independent
Programming Language :: Python
Programming Language :: Python :: 3
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
Topic :: Software Development :: Libraries :: Python Modules
Operating System :: OS Independent
Typing :: Typed
project_urls =
Bug Tracker = https://github.com/noaa-emc/wxflow/issues
CI = https://github.com/noaa-emc/wxflow/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>=1.21.6
PyYAML>=6.0
Jinja2>=3.1.2
tests_require =
pytest, pytest-cov, isort, pycodestyle
[options.packages.find]
where=src
[options.package_data]
* = *.txt, *.md
[options.extras_require]
dev = pytest>=7; pytest-cov>=3; isort>=5; pycodestyle>=2; pre-commit>=2; tox>=3
docs = sphinx>=4; sphinx-autobuild; sphinx_rtd_theme>=0.5; furo>=2023.03.23; sphinx-copybutton
[green]
file-pattern = test_*.py
verbose = 2
no-skip-report = true
quiet-stdout = true
run-coverage = true
[tool:pytest]
addopts = --cov=wxflow --cov-report=term-missing --cov-report=xml --cov-report=html
[tool:pycodestyle]
exclude = .git,.github,venv,.vscode,docs/conf.py
max-line-length = 160