-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
107 lines (94 loc) · 2.12 KB
/
pyproject.toml
File metadata and controls
107 lines (94 loc) · 2.12 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
98
99
100
101
102
103
104
105
106
107
[build-system]
requires = ["setuptools", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[project]
name = "nuclearmasses"
authors = [
{name = "Ian Cullen"},
{name = "Soham Pal"},
]
description = "A python package to parse and store the various files published by AME and NUBASE"
version = "0.5.0"
readme = "README.md"
requires-python = ">=3.11"
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Education",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Operating System :: OS Independent",
"Topic :: Education",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Physics",
]
dependencies = [
"pandas",
]
keywords = [
"nuclear",
"physics",
"decay",
"half-life",
"isotope",
"nuclide",
"radiation",
"AME",
"NUBASE",
]
[project.optional-dependencies]
dev = [
"coverage",
"mypy",
"pandas-stubs",
"pytest",
"ruff"
]
docs = [
"sphinx",
"furo",
"myst-parser",
]
[project.urls]
GitHub = "https://github.com/php1ic/nuclearmasses"
Changelog = "https://github.com/php1ic/nuclearmasses/blob/main/CHANGELOG.md"
[tool.setuptools]
license-files = ["LICENSE"]
package-dir = {"" = "src"}
[tool.setuptools.packages.find]
include = ["nuclearmasses"]
[tool.setuptools.package-data]
nuclearmasses = [
"data/**/*"
]
[tool.coverage.report]
omit = [
"tests/*"
]
[tool.ruff]
line-length = 120
[tool.ruff.format]
# Nothing different from defaults
[tool.ruff.lint.isort]
known-first-party = ["src"]
from-first = false
order-by-type = true
force-sort-within-sections = true
[tool.ruff.lint]
extend-select = [
"B", # flake8-bugbear
"C4", # flake8-comprehensions
"E", # pycodestyle errors
"F", # pyflakes
"W", # pycodestyle warnings
"I", # isort
"UP", # pyupgrade
]
[tool.ruff.lint.per-file-ignores]
"tests/*" = ["E501"]