-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpyproject.toml
47 lines (41 loc) · 1.15 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
[build-system]
requires = ["hatchling", "hatch-requirements-txt"]
build-backend = "hatchling.build"
[tool.hatch.metadata.hooks.requirements_txt]
files = ["requirements.txt"]
[project]
name = "finalcif"
dynamic = ["version", "dependencies"]
authors = [
{ name = "Daniel Kratzert", email = "[email protected]" },
]
description = "CIF file editor"
readme = "README.md"
requires-python = ">=3.10"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Topic :: Scientific/Engineering :: Chemistry",
"Development Status :: 5 - Production/Stable",
"Programming Language :: Python :: 3",
]
[project.urls]
"Homepage" = "https://dkratzert.de/finalcif.html"
"Bug Tracker" = "https://github.com/dkratzert/FinalCif/issues"
[tool.hatch.version]
path = "finalcif/__init__.py"
pattern = "VERSION\\s*=\\s*(?P<version>\\d+\\.{0,1}\\d{0,1})"
[tool.hatch.build.targets.sdist]
exclude = [
"/.github",
"/test-data",
"/scripts",
"/setup",
"/tests",
"/docs",
"/make_release.sh",
"/venv*",
]
[project.scripts]
finalcif = "finalcif.finalcif_start:main"