-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.cfg
57 lines (52 loc) · 1.41 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
[metadata]
name = pysatModels
version = file: pysatModels/version.txt
url = https://github.com/pysat/pysatModels
author = Pysat Development Team
author_email = [email protected]
description = 'Supports model analysis and model-data comparisons'
long_description = file: README.md
long_description_content_type = text/markdown
classifiers =
Development Status :: 3 - Alpha
Topic :: Scientific/Engineering :: Physics
Intended Audience :: Science/Research
License :: Freely Distributable
Natural Language :: English
Programming Language :: Python :: 3
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Operating System :: MacOS :: MacOS X
Operating System :: POSIX :: Linux
Operating System :: Microsoft :: Windows
license_file = LICENSE
[options]
python_requires = >= 3.5
setup_requires = setuptools >= 38.6; pip >= 10
packages = find:
include_package_data = True
zip_safe = False
install_requires = numpy
packaging
pandas
pyForecastTools
pysat
scipy
xarray
[coverage:run]
[coverage:report]
[flake8]
max-line-length = 80
ignore =
D200
D202
H105
W503
[tool:pytest]
markers =
all_inst: tests all instruments
download: tests for downloadable instruments
no_download: tests for instruments without download support
first: first tests to run
second: second tests to run