forked from lmmentel/mendeleev
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
60 lines (54 loc) · 1.36 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
[tool.poetry]
name = "mendeleev"
version = "v0.9.0"
description = "Pythonic periodic table of elements"
authors = ["Lukasz Mentel <[email protected]>"]
maintainers = ["Lukasz Mentel <[email protected]>"]
readme = "README.md"
documentation = "https://mendeleev.readthedocs.io"
repository = "https://github.com/lmmentel/mendeleev"
license = "MIT"
[tool.poetry.dependencies]
python = ">=3.6.2,<4.0"
colorama = "^0.4.4"
numpy = "^1.19.5"
pyfiglet = "^0.8.post1"
Pygments = "^2.8.0"
pandas = ">=0.25.0"
six = "^1.15.0"
SQLAlchemy = "^1.3.23"
plotly = { version = "^5.0", optional = true }
seaborn = { version = "^0.11.1", optional = true }
bokeh = { version = "^2.3.0", optional = true }
jupyter-bokeh = { version = "^3.0.2", optional = true }
[tool.poetry.dev-dependencies]
alembic = "^1.5.5"
black = "^20.8b1"
build = "^0.3.1"
bump2version = "^1.0.1"
ipykernel = "^5.5.0"
ipython = "^7.0"
jedi = "==0.17.2"
jupyter-bokeh = "^3.0.0"
jupyterlab = "^3.0"
nbsphinx = "^0.8.2"
pylint = "^2.7.2"
pytest = "^6.2.2"
Sphinx = "^3.5.1"
sphinx-copybutton = "^0.3.1"
sphinx-material = "^0.0.32"
sphinxcontrib-bibtex = "^2.1.4"
mypy = "^0.910"
pandas-stubs = "^1.2.0"
[tool.mypy]
plugins = "sqlalchemy.ext.mypy.plugin"
[tool.poetry.extras]
vis = [
"bokeh",
"plotly",
"seaborn",
"jupyter-bokeh",
]
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"