-
Notifications
You must be signed in to change notification settings - Fork 10
/
setup.cfg
82 lines (77 loc) · 1.93 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
# package information & setup configuration file
# used by setuptools
[metadata]
name = profit
author = Christopher Albert
author_email = [email protected]
description = Probabilistic response model fitting with interactive tools
long_description = file: README.md
long_description_content_type = text/markdown
url = https://github.com/redmod-team/profit
project_urls =
Issue Tracker = https://github.com/redmod-team/profit/issues
Documentation = https://profit.readthedocs.io/en/latest
keywords = Parameter Study, Gaussian Process, Regression, HPC, Active Learning
license = MIT
classifiers =
Development Status :: 3 - Alpha
Programming Language :: Python :: 3
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Intended Audience :: Science/Research
License :: OSI Approved :: MIT License
Operating System :: POSIX :: Linux
Topic :: Scientific/Engineering
Topic :: Scientific/Engineering :: Visualization
Framework :: Dash
[options]
python_requires = >= 3.7
install_requires =
numpy >=1.16.0, <1.24
scipy
matplotlib
sympy
pyyaml
chaospy
GPy
scikit-learn
pandas
h5py
dash>=1.20.0
tqdm
zmq
importlib_metadata; python_version<'3.8'
tests_require = pytest
packages = find:
include_package_data = True
[options.extras_require]
docs =
sphinx>=1.8.3
sphinx_math_dollar
sphinx_rtd_theme
sphinx_autoapi
sphinx_toolbox
nbsphinx
ipykernel
recommonmark>=0.5.0
cachecontrol>=0.12.6
lockfile>=0.12.2
gpu =
torch
gpytorch
dev =
pytest
pytest-cov
pytest-reraise
pytest-depends
jupyter
pre-commit
black[jupyter]
[options.packages.find]
exclude = *.tests, *.tests.*, tests.*, tests
[options.entry_points]
console_scripts =
profit = profit.main:main
profit-worker = profit.run.worker:main