forked from OpenMined/PyDP
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
40 lines (37 loc) · 958 Bytes
/
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
[tool.poetry]
name = "pydp"
version = "1.1.0rc1"
description = ""
authors = [
"Chinmay Shah <[email protected]>",
]
license = "Apache-2.0"
[tool.poetry.dependencies]
python = "^3.6"
[tool.poetry.dev-dependencies]
black = "*"
black-nb = "*"
bumpversion = "==0.5.3"
coverage = "*"
gcovr = "*"
isort = "*"
jupyter = "*"
matplotlib = "*"
mypy = "*"
nbqa = "*"
pandas = [{ version = "<0.25.0", python = "<3.8" }, { version = "^1.2.3", python = "^3.8" }]
pre-commit = "*"
pytest = "*"
pytest-randomly = "*"
pytest-sugar = "*"
pytest-xdist = "*"
seaborn = "*"
setuptools = "*"
sklearn = "*"
sphinx = "*"
sphinx-rtd-theme = "*"
twine = "*"
wheel = "*"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"