forked from yvchao/cvar_sensing
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.cfg
77 lines (71 loc) · 1.74 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
[metadata]
name = cvar_sensing
version = attr: cvar_sensing.VERSION
author = Yuchao Qin
author_email = [email protected]
description = Risk-averse active sensing for continuous-time prediction.
long_description = file: README.md
long_description_content_type = text/markdown; charset=UTF-8
license = BSD-3-Clause
license_files = LICENSE.txt
keywords = active sensing
url = https://github.com/yvchao/cvar_sensing
classifiers =
Programming Language :: Python :: 3
Development Status :: 4 - Beta
[options]
zip_safe = False
packages = find_namespace:
include_package_data = True
package_dir =
=src
python_requires = >=3.7
install_requires =
importlib-metadata; python_version < "3.8"
torch~=2.0.1; python_version >= "3.8"
torchcde~=0.2.5; python_version >= "3.8"
numpy; python_version >= "3.8"
scikit-learn; python_version >= "3.8"
scipy
tqdm
[options.packages.find]
where = src
exclude =
tests
experiments
reports
assets
[options.extras_require]
# Note: to use the discontinued tensorflow 1.0, we use the NVidia-maintained version:
# https://github.com/NVIDIA/tensorflow
# Note that this is not supported for python 3.9 and newer (unless one builds from source).
benchmarks =
matplotlib
seaborn
pandas
nbformat
nbclient
jupyter
tabulate
asac =
pandas
nvidia-pyindex; python_version == '3.8'
nvidia-tensorflow[horovod]; python_version == '3.8'
tensorflow >=1.15, <2.0; python_version <= '3.7'
torch
numpy~=1.19.5
scikit-learn~=1.0.2
tqdm~=4.65.0
protobuf~=3.19.4
# Note: `dev` does not include `benchmarks` requirements.
dev =
black[jupyter]
build
isort
ruff
jupyter
pre-commit
pytest
pytest-cov
setuptools>=46.1.0
tox