forked from nanograv/pint_pal
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
35 lines (32 loc) · 1.13 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
[build-system]
requires = ["setuptools>=61.0", "versioneer[toml]==0.28"]
build-backend = "setuptools.build_meta"
[project]
name = "pint_pal"
dynamic = ["version"]
authors = [
{ name="Joe Glaser", email="[email protected]" },
{ name="Joe Swiggum", email="[email protected]" },
{ name="Thankful Cromartie", email="[email protected]" },
{ name="Deborah Good", email="[email protected]" },
{ name="Anne Archibald", email="[email protected]" },
{ name="Kevin Wilson", email="[email protected]" },
]
description = "A long-lived repository for NANOGrav Pulsar Timing analysis work."
readme = "README.md"
requires-python = ">=3.8"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
[project.urls]
"Homepage" = "https://github.com/nanograv/pint_pal"
"Bug Tracker" = "https://github.com/nanograv/pint_pal/issues"
[tool.versioneer]
VCS = "git"
style = "pep440"
versionfile_source = "src/pint_pal/_version.py"
versionfile_build = "pint_pal/_version.py"
tag_prefix = "v"
parentdir_prefix = "pint-pal-"