-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
69 lines (59 loc) · 1.37 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
63
64
65
66
67
68
69
[build-system]
requires = ["setuptools>=61", "setuptools-scm[toml]>=6.2"]
build-backend = "setuptools.build_meta"
[project]
name = "rubintv"
description = "rubinTV is a Web app to display Butler-served data sets"
license = { text = "MIT" }
classifiers = [ "Programming Language :: Python :: 3.11" ]
dependencies = [
"fastapi",
"starlette",
"uvicorn[standard]",
"pydantic_settings",
# Other dependencies.
"boto3",
"jinja2",
"websockets",
"moto",
]
readme = "README.md"
dynamic = ["version"]
[project.urls]
Homepage = "https://rubintv.lsst.io"
Source = "https://github.com/lsst-ts/rubintv"
[tool.setuptools.dynamic]
version = { attr = "setuptools_scm.get_version" }
[tool.setuptools.packages.find]
where = [ "python" ]
[project.scripts]
run_rubintv = "lsst.ts.rubintv.run_rubintv:run_rubintv"
[tool.setuptools_scm]
write_to = "python/lsst/ts/rubintv/version.py"
write_to_template = """
# Generated by setuptools_scm
__all__ = ["__version__"]
__version__ = "{version}"
"""
[tool.pytest.ini_options]
asyncio_mode = "strict"
addopts = "-p no:tornado"
[tool.isort]
profile = "black"
skip = ["__init__.py"]
[project.optional-dependencies]
dev = [
"documenteer[pipelines]",
"asgi-lifespan",
"coverage[toml]",
"httpx",
"mypy",
"pre-commit",
"pydantic",
"pytest",
"pytest-asyncio",
"pytest-cov",
"types-PyYAML",
"beautifulsoup4",
"types-python-dateutil",
]