-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
46 lines (39 loc) · 4.4 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
[build-system]
requires = ["setuptools", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[project]
name = "atlasapiclient"
version = "v1.0.0"
authors = [
{name = "Heloise Stevance", email = "[email protected]"},
{name = "Jack Leland", email= "[email protected]"},
{name = "Ken Smith", email= "[email protected]"},
]
description = "API Client utility package for the ATLAS Transient Server"
readme = "README.md"
requires-python = ">=3.8"
keywords = ["astronomy", "ATLAS API"]
license = {text = "BSD-3-Clause"}
dependencies = [
"numpy",
"pandas",
"requests",
"tqdm",
"pyyaml",
'importlib-metadata; python_version<"3.9"',
]
# dynamic = ["version"]
# See some of the stuff I have in the hoki .toml file
[tool.pytest.ini_options]
markers = [
"slow: marks tests as slow",
"integration: mark tests as requiring additional infrastructure",
"serial",
]
[project.optional-dependencies]
test = ["pytest"]
docs = ["sphinx==7.4.7", "sphinx_rtd_theme==3.0.2"]
#[project.scripts]
#my-script = "my_package.module:function"
# ... other project metadata fields as specified in:
# https://packaging.python.org/en/latest/specifications/declaring-project-metadata/