-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpyproject.toml
54 lines (46 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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
[build-system]
requires = ["setuptools>=61.0", "setuptools_scm[toml]"]
build-backend = "setuptools.build_meta"
[project]
name = "slac-alarm-manager"
description = "Python interface for managing alarms"
readme = "README.md"
authors = [ {name = "SLAC National Accelerator Laboratory"} ]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Natural Language :: English",
"Programming Language :: Python :: 3"
]
requires-python = ">=3.9"
dependencies = [
"kafka-python",
"pydm",
"PyQt5",
"qtpy"
]
dynamic = ["version"]
[project.scripts]
slam = "slam_launcher.main:main"
[project.entry-points."pydm.data_plugin"]
pydm_alarm_plugin = "pydm_alarm_plugin.alarm_plugin:AlarmPlugin"
[project.optional-dependencies]
dev = [
"pytest",
"pytest-qt",
"pytest-cov",
"pre-commit"
]
docs = [
"mkdocs",
"mkdocs-material"
]
[project.urls]
Homepage = "https://github.com/slaclab/slac-alarm-manager"
Documentation = "https://slaclab.github.io/slac-alarm-manager/"
[project.license]
file = "LICENSE.md"
[tool.setuptools_scm]
version_file = "slam/_version.py"
[tool.setuptools.packages.find]
include = ["slam", "slam_launcher", "pydm_alarm_plugin"]
namespaces = false