-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
33 lines (31 loc) · 1.19 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
[tool.poetry]
name = "lightcurve-pipeline"
version = "0.0.0"
description = "Basic pipeline for post-1GC lightcurve extraction."
repository = "https://github.com/joesbright/parrot-stew-recipes"
authors = [
"Oleg Smirnov <[email protected] >",
"Joe Bright <[email protected]>",
"Jonathan Kenyon <[email protected]>",
]
license = "MIT"
readme = "README.md"
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Topic :: Scientific/Engineering :: Astronomy"
]
packages = [{include = "lightcurve_pipeline"}]
[tool.poetry.dependencies]
python = ">=3.9, <3.11"
stimela = { git = "https://github.com/caracal-pipeline/stimela.git", branch = "master"}
cult-cargo = { git = "https://github.com/caracal-pipeline/cult-cargo.git", branch = "master" }
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"