-
Notifications
You must be signed in to change notification settings - Fork 43
/
pyproject.toml
96 lines (86 loc) · 2.65 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
[tool.poetry]
name = "mendeleev"
version = "v0.19.0"
description = "Pythonic periodic table of elements"
keywords = ["periodic table", "chemistry", "elements", "science"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Education",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Scientific/Engineering :: Chemistry",
"Topic :: Scientific/Engineering :: Physics",
"Topic :: Software Development :: Libraries :: Python Modules",
]
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"
# added source section to avoid: https://github.com/python-poetry/poetry/issues/9293
[[tool.poetry.source]]
name = "pypi-public"
url = "https://pypi.org/simple/"
[tool.poetry.dependencies]
python = ">=3.8.1,<3.13"
colorama = "^0.4.6"
numpy = [
{ version = "^1.26", python = ">=3.12" },
{ version = "^1.21", python = "<3.12" },
]
pyfiglet = "^0.8.post1"
Pygments = "^2.11.2"
pandas = [
{ version = "^2.1", python = ">=3.12,<3.13" },
{ version = ">=1.0.0", python = "<3.12" },
]
SQLAlchemy = ">=1.4.0"
deprecated = "^1.2.14"
pydantic = "^2.9.2"
[tool.poetry.group.dev.dependencies]
alembic = "^1.5.5"
bump2version = "^1.0.1"
invoke = "^2.2.0"
ipykernel = "^6.0"
ipython = "^8.0"
jupyterlab = "^4.0"
nbsphinx = "^0.9.0"
pandas-stubs = "^1.2.0"
pre-commit = "==3.5.0"
pytest = "^8.0.0"
Sphinx = [
{ version = "^8.0.0", python = ">=3.10" },
{ version = "^7.0.0", python = "<3.10" },
]
sphinx-copybutton = "^0.3.1"
sphinx-material = "^0.0.32"
sphinxcontrib-bibtex = "^2.1.4"
pytest-xdist = "^3.6.1"
[tool.poetry.group.vis]
optional = true
[tool.poetry.group.vis.dependencies]
bokeh = "^3.0"
jupyter-bokeh = "^4.0"
plotly = "^5.0"
seaborn = ">=0.12"
scipy = [ # required by seaborn
{ version = "^1.11", python = ">=3.12,<3.13", optional = true },
{ version = "^1.6", python = "<3.12", optional = true },
]
pyzmq = "^26.0.0"
[tool.pytest.ini_options]
minversion = "8.0"
addopts = "--durations=10 -n auto"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"