-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
42 lines (35 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
[build-system]
requires = ["setuptools >= 61.0", "oldest-supported-numpy"]
build-backend = "setuptools.build_meta"
[project]
name = "tauclean"
description = "A pulsar profile deconvolution method for the recovery of intrisic profile shapes and ISM broadening functions."
dynamic = ["version"] # dynamically grab version from the package
readme = { file = "README.md", content-type = "text/markdown" }
license = { file = "LICENSE" }
authors = [
{ name = "Bradley Meyers", email = "[email protected]" },
{ name = "Ramesh Bhat", email = "[email protected]" }, # original author
{ name = "Olivia Young", email = "[email protected]" }, # updated version author
{ name = "Michael Lam", email = "[email protected]" }, # updated version author
]
maintainers = [
{ name = "Bradley Meyers", email = "[email protected]" },
]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Academic Free License (AFL)",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Astronomy",
"Intended Audience :: Science/Research",
]
requires-python = ">=3.9"
dependencies = ["numpy>=1.16.0,<2.0", "matplotlib>=3.0.0", "scipy>=1.2.0"]
[project.scripts]
tauclean = "tauclean.cli_tauclean:main"
simulate = "tauclean.cli_simulate:main"
[project.urls]
Repository = "https://github.com/bwmeyers/tauclean.git"
Issues = "https://github.com/bwmeyers/tauclean/issues"
[tool.setuptools.dynamic]
version = { attr = "tauclean.__version__" }