-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
executable file
·88 lines (79 loc) · 2.26 KB
/
pyproject.toml
File metadata and controls
executable file
·88 lines (79 loc) · 2.26 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "rcsb.utils.dictionary"
description = "RCSB Python Dictionary Utility Classes"
version = "1.37"
readme = "README.md"
authors = [
{ name="John Westbrook", email="john.westbrook@rcsb.org" }
]
maintainers = [
{ name="Dennis Piehl", email="dennis.piehl@rcsb.org" },
{ name="Brinda Vallat", email="brinda.vallat@rcsb.org" }
]
license = "Apache-2.0"
license-files = ["LICENSE"]
requires-python = ">=3.9"
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Natural Language :: English",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.13",
]
dependencies = [
"scipy",
"numpy",
"mmcif >= 0.91.0",
"rcsb.utils.chemref >= 0.98",
"rcsb.utils.citation >= 0.25",
"rcsb.utils.config >= 0.40",
"rcsb.utils.ec >= 0.25",
"rcsb.utils.io >= 1.52",
"rcsb.utils.multiproc >= 0.19",
"rcsb.utils.repository >= 0.50",
"rcsb.utils.seq >= 0.82",
"rcsb.utils.struct >= 0.47",
"rcsb.utils.targets >= 0.88",
"rcsb.utils.taxonomy >= 0.43",
"rcsb.utils.validation >= 0.31",
"rcsb.utils.insilico3d >= 0.42",
]
[project.optional-dependencies]
tests = ["tox", "pylint", "black>=21.5b1", "flake8", "coverage", "check-manifest"]
[project.urls]
Homepage = "https://github.com/rcsb/py-rcsb_utils_dictionary"
# ---------------- hatch configuration ----------------
[tool.hatch.build.targets.sdist]
include = [
"/rcsb/**",
"/README.md",
"/LICENSE",
"/HISTORY.txt",
"/pyproject.toml",
]
exclude = [
"/rcsb/mock-*",
"/rcsb/utils/test*/test*-*",
"/rcsb/utils/test*/**.cif",
]
[tool.hatch.build.targets.wheel]
packages = ["rcsb"]
exclude = [
"/rcsb/utils/test*",
"/rcsb/mock-*",
]
[tool.hatch.envs.default]
skip-install = true
# ---------------- test configuration ----------------
[tool.hatch.envs.hatch-test]
dependencies = ["tox"]
[tool.hatch.envs.hatch-test.scripts]
run = ["tox"]
# ---------------- UV configuration ----------------
# Add this to prevent uv from automatically creating venvs within individual packages when running 'uv run ...' from within the package directory
[tool.uv]
managed = false