-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
76 lines (69 loc) · 1.89 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
# https://peps.python.org/pep-0517/
[build-system]
requires = ["hatchling", "hatch-vcs"]
build-backend = "hatchling.build"
# https://peps.python.org/pep-0621/
[project]
name = "matchmaps"
# versioning through releases
description = "Make unbiased difference maps even for non-isomorphous inputs"
readme = "README.md"
requires-python = ">=3.9"
license = { text = "BSD 3-Clause License" }
authors = [
{ email = "debrookner@gmail.com", name = "Dennis Brookner" },
]
classifiers = [
"Development Status :: 3 - Alpha",
"License :: OSI Approved :: BSD License",
"Natural Language :: English",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Typing :: Typed",
]
dynamic = ["version"]
dependencies = [
"numpy",
"tqdm",
"reciprocalspaceship>=1.0.1",
"rs-booster>=0.1.2",
"gemmi"
]
# extras
# https://peps.python.org/pep-0621/#dependencies-optional-dependencies
[project.optional-dependencies]
test = ["pytest>=6.0", "pytest-cov"]
dev = [
"black",
"ipython",
"mypy",
"pdbpp",
"pre-commit",
"pytest-cov",
"pytest",
"rich",
"ruff",
]
docs = [
"sphinx",
"myst_parser",
"sphinxcontrib_autoprogram",
"sphinx_rtd_theme"
]
[project.urls]
homepage = "https://rs-station.github.io/matchmaps/"
repository = "https://github.com/rs-station/matchmaps"
# same as console_scripts entry point
[project.scripts]
matchmaps = "matchmaps._compute_realspace_diff:main"
"matchmaps.ncs" = "matchmaps._compute_ncs_diff:main"
"matchmaps.mr" = "matchmaps._compute_mr_diff:main"
"matchmaps.version" = "matchmaps._version_util:main"
# https://hatch.pypa.io/latest/config/metadata/
[tool.hatch.version]
source = "vcs"
# # this can be deleted once a new rs-booster version has been released
# [tool.hatch.metadata]
# allow-direct-references = true