-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
97 lines (90 loc) · 2.38 KB
/
Copy pathpyproject.toml
File metadata and controls
97 lines (90 loc) · 2.38 KB
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
97
[build-system]
requires = ["hatchling>=1.24"]
build-backend = "hatchling.build"
[project]
name = "atomref"
dynamic = ["version"]
description = "Curated atomic reference data and transfer policies for geometry and structure-analysis algorithms."
readme = "README.md"
requires-python = ">=3.10"
license = { file = "LICENSE" }
authors = [
{ name = "Ivan Yu. Chernyshov", email = "ivan.chernyshoff@gmail.com" }
]
keywords = ["chemistry", "materials", "crystallography", "reference data", "atomic radii"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Chemistry",
"Topic :: Software Development :: Libraries",
"License :: OSI Approved :: GNU Lesser General Public License v3 or later (LGPLv3+)",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Operating System :: OS Independent",
"Typing :: Typed",
]
dependencies = []
[project.urls]
Homepage = "https://delonecommons.github.io/atomref/"
Documentation = "https://delonecommons.github.io/atomref/"
Repository = "https://github.com/DeloneCommons/atomref"
Issues = "https://github.com/DeloneCommons/atomref/issues"
Changelog = "https://github.com/DeloneCommons/atomref/blob/main/CHANGELOG.md"
[project.optional-dependencies]
test = [
"pytest>=7",
"tomli>=2; python_version < '3.11'",
]
docs = [
"mkdocs>=1.6,<2",
"mkdocs-material>=9.5",
"mkdocstrings[python]>=0.25",
"mkdocs-include-markdown-plugin>=6.2",
"pymdown-extensions>=10.0",
"tomli>=2; python_version < '3.11'",
]
dev = [
"build>=1.2",
"twine>=5",
"flake8>=7",
]
[tool.hatch.version]
path = "src/atomref/__about__.py"
[tool.hatch.build.targets.wheel]
packages = ["src/atomref"]
include = [
"src/atomref/data/*.csv",
"src/atomref/data/*.json",
]
[tool.hatch.build.targets.sdist]
include = [
"/src",
"/tests",
"/docs",
"/tools",
"/notebooks",
"/mkdocs.yml",
"/README.md",
"/CHANGELOG.md",
"/DEV_PLAN.md",
"/NOTICE.md",
"/LICENSE",
"/COPYING",
]
[tool.pytest.ini_options]
testpaths = ["tests"]
addopts = "-ra --ignore=build --ignore=dist"
norecursedirs = [
".git",
".pytest_cache",
"__pycache__",
".venv",
".tox",
"dist",
".eggs",
"*.egg-info",
]