-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
63 lines (56 loc) · 1.58 KB
/
pyproject.toml
File metadata and controls
63 lines (56 loc) · 1.58 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
54
55
56
57
58
59
60
61
62
63
[build-system]
requires = [
"hatch-vcs",
"hatchling",
]
build-backend = "hatchling.build"
[project]
name = "sorunlib"
dynamic = ["version"]
description = "OCS Control Programs for running the observatory."
readme = "README.rst"
license = "BSD-2-Clause"
requires-python = ">=3.10"
classifiers = [
"Intended Audience :: Science/Research",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Topic :: Scientific/Engineering :: Astronomy",
]
dependencies = [
"ocs==0.12.0",
"pyyaml",
]
[project.optional-dependencies]
docs = [
"sphinx>=5.3.0",
"sphinx_rtd_theme>=1.1.1",
]
dev = [
"pytest-cov>=3.0.0",
"pytest-mock>=3.12.0",
"pytest>=7.0.0",
"setuptools-scm",
]
[project.urls]
"Bug Tracker" = "https://github.com/simonsobs/sorunlib/issues"
Documentation = "https://sorunlib.readthedocs.io"
Homepage = "https://github.com/simonsobs/sorunlib"
"Source Code" = "https://github.com/simonsobs/sorunlib"
[tool.hatch.version]
source = "vcs"
# closest scheme to versioneer behavior, avoids auto-incremented version number
# https://setuptools-scm.readthedocs.io/en/latest/usage/#default-versioning-scheme
[tool.hatch.version.raw-options]
version_scheme = "no-guess-dev"
[tool.hatch.build.hooks.vcs]
version-file = "src/sorunlib/_version.py"
[tool.hatch.build.targets.sdist]
include = [
"/src",
]