-
Notifications
You must be signed in to change notification settings - Fork 38
/
pyproject.toml
57 lines (50 loc) · 1.66 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
[project]
name = "periodictable"
dynamic = ["version"]
description = "Extensible periodic table of the elements"
readme = "README.rst"
authors = [
{ name = "Paul Kienzle", email = "paul.kienzle@nist.gov" },
]
license = { file = "LICENSE.txt" }
dependencies = [
"pyparsing", "numpy",
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Intended Audience :: Science/Research",
"License :: Public Domain",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering :: Chemistry",
"Topic :: Scientific/Engineering :: Physics",
]
requires-python = ">=3.8"
[project.optional-dependencies]
dev = [
"build",
"pytest",
"pytest-cov",
"matplotlib",
"sphinx",
]
[project.urls]
documentation = "https://periodictable.readthedocs.io"
repository = "https://github.com/python-periodictable/periodictable"
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[tool.setuptools.dynamic]
version = { attr = "periodictable.__version__" }
[tool.setuptools]
packages = ["periodictable"]
[tool.pytest.ini_options]
addopts = ["--doctest-modules", "--doctest-glob=*.rst", "--cov=periodictable"]
doctest_optionflags = "ELLIPSIS"
pythonpath = ["doc/sphinx"]
testpaths = ["periodictable", "test", "doc/sphinx/guide"]
python_files = "*.py"
python_classes = "NoClassTestsWillMatch"
python_functions = ["test", "*_test", "test_*"]