-
Notifications
You must be signed in to change notification settings - Fork 5
/
pyproject.toml
82 lines (73 loc) · 1.95 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
70
71
72
73
74
75
76
77
78
79
80
81
82
[build-system]
requires = [
"hatch-vcs",
"hatchling",
]
build-backend = "hatchling.build"
[project]
name = "ocs"
dynamic = ["version"]
description = "Observatory Control System"
readme = "README.rst"
requires-python = ">=3.7"
classifiers = [
"Framework :: Twisted",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: BSD License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Topic :: Scientific/Engineering :: Astronomy",
]
dependencies = [
"autobahn",
"deprecation",
"importlib_metadata;python_version<\"3.10\"",
"influxdb",
"numpy<2.0", # pin until 2.0 is supported in so3g
"PyYAML",
"setproctitle",
"twisted",
]
[project.entry-points."ocs.plugins"]
ocs = "ocs.plugin"
[project.optional-dependencies]
dev = [
"coverage",
"docker",
"pytest",
"pytest-cov",
"pytest-docker",
"pytest-twisted",
"setuptools-scm",
"so3g",
]
so3g = [
"so3g",
]
[project.scripts]
ocs-agent-cli = "ocs.agent_cli:main"
ocs-client-cli = "ocs.client_cli:main"
ocs-install-systemd = "ocs.ocs_systemd:main"
ocs-local-support = "ocs.ocsbow:main_local"
ocsbow = "ocs.ocsbow:main"
[project.urls]
"Bug Tracker" = "https://github.com/simonsobs/ocs/issues"
Documentation = "https://ocs.readthedocs.io/"
Homepage = "https://github.com/simonsobs/ocs"
"Source Code" = "https://github.com/simonsobs/ocs"
[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 = "ocs/_version.py"
[tool.hatch.build.targets.sdist]
include = [
"/ocs",
]