-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
46 lines (40 loc) · 1.33 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 >= 61.0"] # PEP 621 compliant
build-backend = "setuptools.build_meta"
[project]
dynamic = ["version"]
name = "lsstdesc-dataregistry"
description = "Creation and user API for DESC data registry."
readme = "README.md"
authors = [
{ name = "Joanne Bogart", email = "[email protected]" },
{ name = "Stuart McAlpine", email = "[email protected]" }
]
license = { file = "LICENCE" }
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
keywords = ["desc", "python", "registry"]
# NOTE: Those needing to create a database will also need to install the
# GitPython package. It is not needed for accessing an existing db.
dependencies = [
'psycopg2',
'sqlalchemy>=2.0.16',
'pyyaml',
'pandas'
]
requires-python = ">=3.9,<3.13" # Supported versions (in CI)
[tool.setuptools.dynamic]
version = {attr = "dataregistry._version.__version__"}
[project.optional-dependencies]
docs = ["sphinx_rtd_theme"]
[tool.setuptools.packages.find]
where = ["src"]
[project.scripts]
dregs = "dataregistry_cli.cli:main"
[tool.setuptools.package-data]
"dataregistry" = ["site_config/site_rootdir.yaml", "schema/*.yaml"]