forked from lsst/sdm_schemas
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
57 lines (49 loc) · 1.49 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
[build-system]
requires = ["setuptools", "lsst-versions >= 1.3.0"]
build-backend = "setuptools.build_meta"
[project]
name = "lsst-sdm-schemas"
description = "Science Data Model (SDM) Schemas for Rubin Observatory"
license = {text = "GNU General Public License v3 or later (GPLv3+)"}
readme = "README.md"
authors = [
{name="Rubin Observatory Data Management", email="[email protected]"},
]
classifiers = [
"Intended Audience :: Science/Research",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Scientific/Engineering :: Astronomy"
]
keywords = ["lsst"]
dependencies = [
"lsst-felis @ git+http://github.com/lsst/felis.git@main",
"click",
"pyyaml",
"psycopg2-binary",
"pymysql",
"cryptography"
]
requires-python = ">=3.11.0"
dynamic = ["version"]
[tool.setuptools.dynamic]
version = { attr = "lsst_versions.get_lsst_version" }
[tool.lsst_versions]
write_to = "python/lsst/sdm_schemas/version.py"
[project.urls]
Homepage = "https://sdm-schemas.lsst.io"
Source = "https://github.com/lsst/sdm_schemas"
[project.optional-dependencies]
test = [
"pytest >= 3.2"
]
[tool.setuptools]
zip-safe = true
license-files = ["COPYRIGHT", "LICENSE"]
[tool.setuptools.packages.find]
where = ["python"]
[tool.setuptools.package-data]
"lsst.sdm_schemas" = ["schemas/*.yaml"]