-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
58 lines (53 loc) · 1.08 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
[build-system]
requires = ["setuptools>=64",]
build-backend = "setuptools.build_meta"
[project]
name = "oda_api"
dynamic = ["version"]
description = "API plugin for CDCI online data analysis"
authors = [
{name = "Andrea Tramacere", email = "[email protected]"},
{name = "Volodymyr Savchenko", email = "[email protected]"}
]
maintainers = [
{name = "Gabriele Barni", email = "[email protected]"},
{name = "Denys Savchenko", email = "[email protected]"}
]
readme = "README.md"
requires-python = ">=2.7"
dependencies = [
"requests",
"future",
"astropy>=3.2,<=6.1.4",
"json_tricks",
"matplotlib",
"numpy<2.0",
"jsonschema",
"pyjwt",
"astroquery",
"scipy",
"rdflib",
"black",
"puremagic"
]
[project.optional-dependencies]
test = [
"pytest-xdist[psutil]",
"astroquery>=0.4.4",
"sentry_sdk",
"cdci_data_analysis>=1.3.5"
]
extra-test = [
"pytest-xdist[psutil]",
"astroquery>=0.4.4"
]
gw = [
"gwpy",
"ligo.skymap"
]
ontology = [
"rdflib"
]
[project.scripts]
oda-api = "oda_api.cli:main"
[tool.setuptools_scm]