-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathpyproject.toml
55 lines (51 loc) · 1.59 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
[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="joe.glaser@nanograv.org" },
{ name="Joe Swiggum", email="joe.swiggum@nanograv.org" },
{ name="Thankful Cromartie", email="thanful.cromartie@nanograv.org" },
{ name="Deborah Good", email="deborah.good@nanograv.org" },
{ name="Anne Archibald", email="anne.archibald@nanograv.org" },
{ name="Kevin Wilson", email="kevin.wilson@nanograv.org" },
{ name="Ross Jennings", email="ross.jennings@nanograv.org" },
]
description = "A long-lived repository for NANOGrav Pulsar Timing analysis work."
readme = "README.md"
requires-python = ">=3.8"
dependencies = [
"ruamel.yaml",
"pint_pulsar>=1.1.1",
"enterprise-pulsar>=3.3.2",
"enterprise-extensions>=v2.4.1",
"pytest",
"nbconvert",
"ipywidgets>=7.6.3",
"pypulse>=0.0.1",
"numpy",
"weasyprint",
"pytest-xdist[psutil]>=2.3.0",
"notebook",
"seaborn",
"gitpython",
]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
[tool.setuptools.package-data]
pint_pal = ["defaults.yaml", "plot_settings.yaml"]
[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-"