-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
60 lines (54 loc) · 1.85 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
[tool.poetry]
name = "snews-cs"
version = "2.2.0"
description = "An alert application for observing supernovas."
authors = ["Sebastian Torres-Lara <[email protected]>", "Melih Kara <[email protected]>"]
license = "BSD 3-Clause"
readme = "README.md"
packages = [{include = "snews_cs"}]
homepage = "https://github.com/SNEWS2/SNEWS_Coincidence_System.git"
repository = "https://github.com/SNEWS2/SNEWS_Coincidence_System.git"
documentation = "https://snews-coincidence-system.readthedocs.io/"
classifiers = [
"Development Status :: 2 - Pre-Alpha",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Intended Audience :: Science/Research",
"Intended Audience :: Developers",
"Natural Language :: English",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Astronomy",
"Topic :: Scientific/Engineering :: Physics",
"Operating System :: POSIX",
"Operating System :: Unix",
"Operating System :: MacOS",
"License :: OSI Approved :: BSD License",
]
[tool.poetry.scripts]
snews_cs = "snews_cs.__main__:main"
[tool.poetry.dependencies]
python = ">=3.11, <3.13"
click = "^8.1.7"
hop-client = "^0.9.0"
ipython = "<7.33.0" # Constrained by snews_pt
numpy = "^1.26.0"
pandas = "^2.1.1"
python-dotenv = "0.19.2" # Constrained by snews_pt
pymongo = "^4.5.0"
slack-sdk = "^3.26.2"
matplotlib = "^3.8.0"
scipy = "^1.11.3"
sqlalchemy = "^2.0.32"
tabulate = "^0.9.0"
snews-pt = { git = "https://github.com/SNEWS2/SNEWS_Publishing_Tools.git", branch = "main" }
[tool.poetry.group.dev.dependencies]
autopep8 = "^2.0.4"
flake8 = "^6.1.0"
mongomock = "^4.1.2"
pytest = "<6.3.0" # Constrained by snews_pt
[tool.poetry.group.docs.dependencies]
sphinx = "<5" # Constrained by snews_pt
sphinx-pdj-theme = "^0.4.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"