forked from SIMPLE-AstroDB/SIMPLE-db
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
41 lines (34 loc) · 808 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
39
40
41
[build-system]
requires = [
"setuptools>=75",
"setuptools_scm",
]
build-backend = "setuptools.build_meta"
[project]
name = "simple"
description = "SIMPLE Archive Software"
dynamic = ["version"]
readme = "README.md"
license = {file = "LICENSE"}
authors = [
{name = "Kelle Cruz", email = "[email protected]"},
{name = "David Rodriguez", email = "[email protected]"},
]
requires-python = ">= 3.10"
dependencies = [
"astrodbkit",
"astrodb_utils",
"ads",
"matplotlib",
]
[project.optional-dependencies]
test = [
"pytest",
]
[project.urls]
Repository = "https://github.com/SIMPLE-AstroDB/SIMPLE-db"
Documentation = "https://github.com/SIMPLE-AstroDB/SIMPLE-db/documentation"
[tool.setuptools]
packages = ["simple"]
[tool.setuptools_scm]
write_to = "simple/version.py"