-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
62 lines (56 loc) · 2.14 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
59
60
61
62
# https://packaging.python.org/en/latest/guides/writing-pyproject-toml
# https://python-poetry.org/docs/basic-usage/#specifying-dependencies
#
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poetry]
name = "pittgoogle-client"
repository = "https://github.com/mwvgroup/pittgoogle-client"
version = "0.0.0"
description = "Client utilities for the Pitt-Google astronomical alert broker."
keywords = ["astronomy", "alert", "broker", "rubin"]
authors = ["MWV Research Group"]
license = "BSD-3-Clause"
readme = "README.md"
packages = [{ include = "pittgoogle" }]
classifiers = [
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Astronomy",
"Topic :: Scientific/Engineering :: Physics",
"License :: OSI Approved :: BSD License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Typing :: Typed"
]
[tool.poetry.dependencies]
# https://python-poetry.org/docs/dependency-specification/
# https://python-poetry.org/docs/dependency-specification/#git-dependencies
python = "^3.9"
attrs = ">=23.1"
astropy = ">=5.3" # v<6.0.0 required by supernnova 3.0.1
db-dtypes = "^1.2.0" # Needed by google-cloud-bigquery. Poetry added this as "^"; leaving for now.
fastavro = ">=1.7.4"
google-auth-oauthlib = ">=1.0"
google-cloud-bigquery = ">=3.11.2"
google-cloud-pubsub = ">=2.17.1"
pandas = ">=1.5" # v1.5.1 required by supernnova v3.0.1
tabulate = ">=0.9"
# lsst-alert-packet for the LSST schema helper.
# The PyPI version of this looks out of date so install from a git tag instead.
# [FIXME] Can't publish to PyPI if we depend on a git repo.
# Without this, `schema.SchemaHelper.lsst_auto_schema_helper` won't work.
# lsst-alert-packet = { git = "https://github.com/lsst/alert_packet.git", tag = "w.2024.26" }
[tool.poetry.group.docs]
optional = true
[tool.poetry.group.docs.dependencies]
docutils = ">=0.20"
myst-parser = ">=3.0"
sphinx = ">=7.0"
sphinx-copybutton = ">=0.5.1"
sphinx_rtd_theme = ">=2.0"
# sphinx_autodoc_typehints = ">=2.0" # see docs/conf.py
[tool.poetry.group.tests]
optional = true
[tool.poetry.group.tests.dependencies]
coverage = "*"