forked from materialsproject/crystaltoolkit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
68 lines (60 loc) · 1.74 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
[tool.poetry]
name = "crystal_toolkit"
version = "2022.06.08"
description = ""
authors = ["Matthew Horton <[email protected]>"]
[tool.poetry.dependencies]
python = ">=3.8, <3.11"
pymatgen = "^2022.0.16"
pydantic = "*"
plotly = "^5.3.1"
webcolors = "*"
crystaltoolkit-extension = "^0.6.0"
mp-api = "*"
shapely = "^1.8.0"
scikit-learn = { version = "*"}
scikit-image = { version = "*"}
ifermi = { version = "*", optional = true}
pyfftw = { version = "*", optional = true}
dash = { version = "^2.0.0", optional = true }
dash-daq = { version = "*", optional = true }
gunicorn = { version = "*", optional = true }
redis = { version = "*", optional = true }
Flask-Caching = { version = "*", optional = true }
gevent = { version = "*", optional = true }
dash-mp-components = "^0.4.1"
robocrys = { version = "*", optional = true }
habanero = { version = "*", optional = true }
dscribe = { version = "*", optional = true }
dash-extensions = { version = "*", optional = true }
sentry-sdk = { version = "*", optional = true }
dash-vtk = { version = "^0.0.6", optional= true }
kaleido = { version = "^0.2.1", optional = true }
numba = ">=0.53"
uuid = "^1.30"
[tool.poetry.extras]
server = [
"dash", "dash-daq", "gunicorn", "redis",
"Flask-Caching", "gevent", "dash-mp-components",
"robocrys", "habanero", "hiphive", "dscribe",
"dash-extensions", "sentry-sdk",
]
fermi = ["ifermi", "pyfftw"]
vtk = ["dash-vtk"]
figures = ["kaleido"]
[tool.poetry.dev-dependencies]
black = "^20.8b1"
pre-commit = "*"
dash = {extras = ["testing"], version = "*"}
pytest = "*"
sphinx = "*"
sphinx_rtd_theme = "*"
recommonmark = "*"
dephell = "*"
mistune = "<2.0.0"
jinja2 = "<3.1.0"
[tool.isort]
profile = "black"
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"