-
Notifications
You must be signed in to change notification settings - Fork 8
/
setup.cfg
65 lines (58 loc) · 1.59 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 = pysatCDF
version = file: pysatCDF/version.txt
url = https://github.com/pysat/pysatCDF
author = Russell A. Stoneback, et al.
author_email = [email protected]
description = 'Simple NASA Common Data Format (CDF) File reader.'
long_description = file: README.md, CHANGELOG.md
long_description_content_type = text/markdown
classifiers =
Development Status :: 5 - Production/Stable
Topic :: Scientific/Engineering :: Physics
Intended Audience :: Science/Research
License :: OSI Approved :: BSD License
Natural Language :: English
Programming Language :: Python :: 3
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Operating System :: POSIX :: Linux
Operating System :: MacOS :: MacOS X
Operating System :: Microsoft :: Windows
keywords =
CDF
NASA
pysat
pandas
license_file = LICENSE
[options]
python_requires = >= 3.5
setup_requires = setuptools >= 38.6; pip >= 10
packages = pysatCDF
include_package_data = True
zip_safe = False
install_requires = numpy
pandas
pysat
xarray
[options.package_data]
* = *.txt
[coverage:run]
[coverage:report]
[flake8]
max-line-length = 80
ignore =
D200
D202
W503
pysatCDF/__init__.py F401
exclude = conf.py
[tool:pytest]
markers =
all_inst: tests all instruments
download: tests for downloadable instruments
no_download: tests for instruments without download support
load_options: tests for instruments including optional load kwargs
first: first tests to run
second: second tests to run