-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
65 lines (53 loc) · 1.52 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
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "pyvela"
version = "0.0.6"
description = "Python interface for Vela.jl, a Bayesian pulsar timing and noise analysis package."
keywords = ["astronomy", "astrophysics", "pulsar"]
authors = [
{name = "Abhimanyu Susobhanan", email = "[email protected]"}
]
maintainers = [
{name = "Abhimanyu Susobhanan", email = "[email protected]"}
]
requires-python = ">=3.10"
dependencies = [
"numpy>=2.1",
"astropy>=6.1",
"pint-pulsar>=1.1",
"juliacall>=0.9"
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Astronomy",
"License :: OSI Approved :: GNU General Public License Version 3",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
]
[project.readme]
file = "README.rst"
content-type = "text/x-rst"
[project.urls]
Homepage = "https://github.com/abhisrkckl/Vela.jl"
Documentation = "https://abhisrkckl.github.io/Vela.jl/"
[project.scripts]
pyvela = "pyvela.pyvela_script:main"
[tool.setuptools]
zip-safe = false
package-dir = {"" = "pyvela"}
include-package-data = true
[tool.setuptools.packages.find]
where = ["pyvela"]
namespaces = false
[tool.setuptools.package-data]
"*" = ["*.*"]
[tool.distutils.bdist_wheel]
universal = 0
[tool.aliases]
test = "pytest"