-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
38 lines (34 loc) · 925 Bytes
/
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
[build-system]
requires = ["setuptools", "setuptools-scm", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "autonicer"
version = "1.2.6"
description = "A program that retrieves NICER observational data sets and performs a default data reduction process on the NICER observational data"
authors = [
{name = "Tsar Bomba Nick", email = "[email protected]" }
]
license = {file = "LICENSE"}
readme = "README.md"
requires-python = ">=3.8"
dependencies = [
"astropy >= 4.2.1",
"astroquery >= 0.4.7.dev8479",
"numpy >= 1.20.3",
"pandas >= 1.2.4",
"termcolor >= 1.1.0",
"certifi >= 2022.12.7",
"cryptography >= 41.0.2",
"requests >= 2.31.0",
]
[project.optional-dependencies]
dev = [
"pytest-cov >= 3.0.0",
"black >= 22.6.0",
"pytest >= 7.2.0",
"build >= 0.10.0",
]
[tool.setuptools]
packages = ["autonicer"]
[project.scripts]
autonicer = 'autonicer:run'