forked from ciemss/pyciemss
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
74 lines (59 loc) · 1.08 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
[metadata]
name = pyciemss
version = 0.0.1
license = BSD-3-Clause
license_files = LICENSE
[options]
install_requires =
matplotlib
seaborn
dill
jupyter
torch >= 1.8.0
pyro-ppl
numpy
scipy
torchdiffeq
networkx
pandas
mira @ git+https://github.com/indralab/mira.git@90b950d01068d92ae870ff6cb271199bca3c3832
xarray
netcdf4
h5netcdf
dask
requests
sympytorch
pika
zip_safe = false
include_package_data = true
python_requires = >=3.9
packages = find:
package_dir =
= src
[options.package_data]
* = *.json
[options.packages.find]
where =
src
[options.extras_require]
tests =
pytest
pytest-xdist
flake8
black
isort
mypy
[flake8]
max-line-length = 120
exclude = causal_pyro, docs, build, dist, .ipynb_checkpoints, .env
extend-ignore = E203
[isort]
profile = black
skip_glob = .ipynb_checkpoints, .env, causal_pyro
known_first_party = pyciemss, test
known_third_party = torch, pyro
[mypy]
ignore_missing_imports = True
exclude = causal_pyro
[mypy-test.models.*]
ignore_errors = True