forked from jfrostburke/snex2
-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpyproject.toml
More file actions
53 lines (48 loc) · 1.17 KB
/
pyproject.toml
File metadata and controls
53 lines (48 loc) · 1.17 KB
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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "snex2"
version = "0.9.0"
description = "Repo for the updated Supernova Exchange, built with the TOM Toolkit and used by the Global Supernova Project collaboration."
readme = "README.md"
requires-python = ">=3.10"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
]
dependencies = [
"tomtoolkit",
"astropy>=5",
"astroquery",
"requests",
"numpy<2",
"lcogt_logging",
"django_plotly_dash",
"tom_registration",
"tom_scimma",
"tom_nonlocalizedevents",
"tom_alertstreams",
"tom_tns",
"sep",
"requests_oauthlib",
"dash",
"dash_core_components",
"dash_html_components",
"dash_table",
"whitenoise",
"mysqlclient",
"gevent>1.4",
"gunicorn",
"dpd_static_support"
]
[project.optional-dependencies]
dev = [
"django-debug-toolbar",
]
[project.urls]
"Source" = "https://github.com/lcogt/banzai"
"Docs" = "https://banzai.readthedocs.io/en/latest/"
[tool.setuptools]
packages = ["snex2"]