-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
69 lines (62 loc) · 1.47 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
[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.0.1"
readme = "README.md"
requires-python = ">=3.10"
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.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Operating System :: OS Independent",
"Topic :: Education",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Physics",
]
dependencies = [
"pandas",
"pytest",
]
keywords = [
"nuclear",
"physics",
"decay",
"AME",
"NUBASE",
]
[project.optional-dependencies]
dev = [
"coverage",
]
[project.urls]
GitHub = "https://github.com/php1ic/nuclearmasses"
[tool.setuptools]
license-files = ["LICENSE"]
[tool.setuptools.packages.find]
include = ["nuclearmasses"]
[tool.setuptools.package-data]
nuclearmasses = [
"data/2003/*.*",
"data/2012/*.*",
"data/2016/*.*",
"data/2020/*.*",
]
[tool.coverage.report]
omit = [
"tests/*"
]