forked from claudioperez/evnt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
94 lines (81 loc) · 1.91 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
92
93
[metadata]
name = evnt
version = attr: evnt.__version__
author = Claudio M. Perez
author_email = [email protected]
description = quakeio
long_description = file: README.md
long_description_content_type = text/markdown
url = https://github.com/claudioperez/quakeio
license_files =
LICENSE
classifiers =
Development Status :: 5 - Production/Stable
Intended Audience :: Developers
License :: OSI Approved :: BSD License
Programming Language :: Python :: 3
Programming Language :: Python :: 3 :: Only
keywords =
seismic
earthquake
parser
[options]
package_dir =
= src
packages = find:
python_requires = >=3.6
install_requires =
numpy < 1.20.0; python_version<'3.8'
numpy < 1.25.0; python_version=='3.8'
numpy ; python_version>='3.9'
scipy < 1.6.0 ; python_version=='3.6'
scipy < 1.8 ; python_version=='3.7'
scipy > 1.6.0 ; python_version>'3.7'
pyyaml
opensees
include_package_data = true
[options.package_data]
* = *.mplstyle
[options.packages.find]
where = src
exclude =
build*
dist*
docs*
tests*
[options.extras_require]
testing =
# upstream
pytest >= 4.6
pytest-checkdocs >= 2.4
pytest-flake8
pytest-black >= 0.3.7; python_implementation != "PyPy" and python_version < "3.10"
pytest-cov
# python_version: workaround for python/typed_ast#156
pytest-mypy; python_implementation != "PyPy" and python_version < "3.10"
pytest-enabler >= 1.0.1
pandas
# local
docs =
# upstream
sphinx
jaraco.packaging >= 8.2
rst.linker >= 1.9
plots =
matplotlib
# local
[options.entry_points]
console_scripts =
evnt = evnt.__main__:main
[flake8]
max-line-length = 88
extend-ignore =
E251
# whitespace around parameter equals
E252
# Continuation underindented for visual indent
E128
# assignment of lambda expression
E731
select = B,C,E,F,W,T4,B9
#[tool:pytest]