-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.cfg
49 lines (44 loc) · 881 Bytes
/
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
[metadata]
name = pyGEEMs
author = Albert R. Kottke
author_email = [email protected]
version = attr: pygeems.__version__
description = Geotechnical earthquake engineering models implemented in Python.
long_description = file: README.rst, HISTORY.rst
license = MIT
classifiers =
Programming Language :: Python :: 3
Topic :: Scientific/Engineering
License :: OSI Approved :: MIT License
[options]
packages = find:
include_package_data = True
install_requires =
matplotlib
numba
numpy
pandas
scipy
[options.packages.find]:
exclude =
tests*
[options.extras_require]
test =
pytest
pytest-cov
pytest-flake8
pytest-runner
dev =
black
flake8
pre-commit
pydocstyle
watchdog
twine
[pydocstyle]
inherit = false
convention = numpy
match = (?!test_).*\.py
[flake8]
max-line-length = 88
extend-ignore = E203