forked from MAVENSDC/PyTplot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.cfg
79 lines (73 loc) · 1.45 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
72
73
74
75
76
77
78
79
[metadata]
name = pytplot
version = 1.7.28
author = MAVEN SDC
author_email = mavensdc@lasp.colorado.edu
description = A python version of IDL tplot libraries
url = https://github.com/MAVENSDC/pytplot
keywords =
tplot
maven
lasp
IDL
spedas
classifiers =
Development Status :: 5 - Production/Stable
Environment :: Console
Intended Audience :: Science/Research
Operating System :: OS Independent
Programming Language :: Python :: 3.7
Topic :: Utilities
license_file = LICENSE
long_description = file: README.md
long_description_content_type = text/markdown
[options]
python_requires = >= 3.6
setup_requires =
setuptools >= 38.6
pip >= 10
include_package_data = True
packages = find:
install_requires =
numpy >= 1.20.0
bokeh >= 1.1
pyqtgraph >= 0.11.1
pandas
matplotlib
scipy
cdflib
xarray
pyqt5 >= 5.15.2
pyqtwebengine >= 5.15.2
[options.extras_require]
tests =
pytest
pytest-cov
coveralls
flake8
mypy
astropy
[options.entry_points]
console_scripts =
[flake8]
max-line-length = 132
exclude = .git,__pycache__,.eggs/,doc/,docs/,build/,dist/,archive/
[coverage:run]
cover_pylib = false
omit =
/home/travis/virtualenv/*
*/site-packages/*
*/bin/*
[coverage:report]
exclude_lines =
pragma: no cover
def __repr__
except RuntimeError
except NotImplementedError
except ImportError
except FileNotFoundError
except CalledProcessError
logging.warning
logging.error
logging.critical
if __name__ == .__main__.: