-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
55 lines (48 loc) · 961 Bytes
/
pyproject.toml
File metadata and controls
55 lines (48 loc) · 961 Bytes
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
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
where = ["."]
include = ["lightserve*", "lightgest*"]
[project]
name = "lightserve"
version = "0.1.0"
requires-python = ">=3.11"
dependencies = [
"pydantic",
"pydantic-settings",
"sqlmodel",
"numpy",
"matplotlib",
"pydantic_numpy",
"psycopg_binary",
"fastapi",
"lightcurvedb @ git+https://github.com/simonsobs/lightcurvedb",
"uvicorn",
"psycopg",
"astropy",
"h5py",
"loguru",
"soauth"
]
[project.optional-dependencies]
dev = [
"pytest",
"ruff",
"coverage",
"pytest-cov",
"pre-commit",
]
ephemeral = [
"tqdm",
"testcontainers",
]
[project.scripts]
lightserve-ephemeral = "lightserve.scripts.ephemeral:main"
lightgest-ephemeral = "lightgest.scripts.ephemeral:main"
[tool.ruff.lint]
extend-select = ["I"]
[tool.coverage.run]
source = [
"lightserve",
]