-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
52 lines (45 loc) · 1.42 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
[tool.poetry]
name = "reprosyn"
version = "0.1.0"
description = ""
authors = ["callummole <[email protected]>"]
[tool.poetry.dependencies]
python = ">=3.9,<3.11"
private-pgm = {git = "https://github.com/ryan112358/private-pgm.git"}
disjoint-set = "^0.7.3"
numpy = "^1.22.3"
pandas = "^1.4.2"
jaxlib = { version = "^0.3.15", optional = true }
jax = { version = "^0.3.16", optional = true }
tqdm = "^4.64.0"
DataSynthesizer = "^0.1.11"
tensorflow = "^2.10.0"
ektelo = { git = "https://github.com/callummole/ektelo.git", rev = "dependencies", optional = true }
py-synthpop = "^0.1.2"
validators = "^0.20.0"
ctgan = {git = "https://github.com/alan-turing-institute/CTGAN.git", rev = "dependencies"}
Sphinx = { version = "^5.3.0", optional = true}
sphinx-rtd-theme = { version = "^1.0.0", optional = true}
sphinx-click = { version = "^4.3.0", optional = true}
myst-parser = { version = "^0.18.1", optional = true}
[tool.poetry.group.dev.dependencies]
pytest = "^7.1.3"
jupyter = "^1.0.0"
black = "^22.3.0"
flake8 = "^4.0.1"
isort = "^5.10.1"
pyinstaller = "^5.0.1"
[tool.poetry.extras]
docs = ["Sphinx", "sphinx-rtd-theme", "sphinx-click", "myst-parser"]
jax = ["jax","jaxlib"] #see issues #11 and #50
ektelo = ["ektelo"] #see issue #53
[tool.poetry.scripts]
rsyn = "reprosyn.cli:cli"
[tool.black]
line-length = 79
[tool.isort]
profile = "black"
line_length = 79
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"