forked from adopy/adopy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
77 lines (70 loc) · 2.03 KB
/
pyproject.toml
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
[tool.poetry]
name = "adopy"
version = "0.4.1-alpha.0"
description = "Adaptive Design Optimization on Experimental Tasks"
authors = ["Jaeyeong Yang <[email protected]>"]
license = "GPL-3.0+"
readme = "README.md"
homepage = "https://adopy.org"
repository = "https://github.com/adopy/adopy"
documentation = "https://adopy.org"
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3 :: Only"
]
[tool.poetry.dependencies]
python = ">=3.6"
importlib_metadata = { version = "*", python = "<3.8" }
pandas = "*"
scipy = ">=1.0.0"
numpy = "*"
# Extra packages for testing
pytest = { version = ">=6.0", optional = true }
pytest-cov = { version = "*", optional = true }
codecov = { version = "*", optional = true }
# Extra packages for documentation
sphinx = { version = "*", optional = true }
sphinx_rtd_theme = { version = "*", optional = true }
sphinx-autobuild = { version = "*", optional = true }
recommonmark = { version = "*", optional = true }
sphinx-issues = { version = "^1.2.0", optional = true }
ipykernel = { version = "^5.3.4", optional = true }
nbsphinx = { version = "^0.8.0", optional = true }
matplotlib = { version = "^3.3.3", optional = true }
jupyterlab = { version = "^2.2.9", optional = true }
[tool.poetry.dev-dependencies]
autopep8 = "*"
flake8 = "*"
pylint = "*"
mypy = "*"
[tool.poetry.extras]
test = [
"pytest",
"pytest-cov",
"codecov"
]
docs = [
"sphinx",
"sphinx_rtd_theme",
"sphinx-autobuild",
"recommonmark",
"sphinxcontrib-rawfiles",
"sphinx-issues",
"matplotlib",
"ipykernel",
"jupyterlab",
"nbsphinx"
]
[[tool.poetry.source]]
name = "test"
url = "https://test.pypi.org/legacy/"
secondary = true
[build-system]
requires = ["poetry>=0.12", "wheel"]
build-backend = "poetry.masonry.api"