forked from cseptesting/floatcsep
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
91 lines (86 loc) · 1.58 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
80
81
82
83
84
85
86
87
88
89
90
91
[metadata]
name = floatcsep
description = CSEP Floating Experiment application
long_description = file: README.md
long_description_content_type = text/markdown
author = Pablo Iturrieta
author_email = [email protected]
license = BSD 3-Clause License
version = attr: setuptools_scm.get_version
platforms = unix, linux, osx, win32
classifiers =
Programming Language :: Python :: 3
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
url = https://github.com/cseptesting/floatcsep.git
[options]
packages =
floatcsep
floatcsep.commands
floatcsep.infrastructure
floatcsep.postprocess
floatcsep.utils
install_requires =
numpy
dateparser
docker
gitpython
h5py
matplotlib
pandas
pycsep
pyshp
pyyaml
requests
scipy
seaborn
tables
xmltodict
python_requires = >=3.9,<3.12
zip_safe = no
[options.packages.find]
include = floatcsep*
[options.extras_require]
dev =
numpy
cartopy
black
dateparser
docker
flake8
geos
gitpython
h5py
matplotlib
mercantile
obspy
packaging
pandas
pycsep
pyproj
pyshp
pytest
pytest-cov
pyyaml
requests
scipy
seaborn
setuptools-scm
shapely
sphinx
sphinx-autoapi
sphinx_design
sphinx-toolbox
sphinx-gallery
sphinx-rtd-theme
sphinx_copybutton
tables
tox
vcrpy==4.3.1
xmltodict
[options.entry_points]
console_scripts =
floatcsep = floatcsep.commands.main:floatcsep
[flake8]
max-line-length = 96