-
Notifications
You must be signed in to change notification settings - Fork 19
/
pyproject.toml
70 lines (60 loc) · 1.65 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
[project]
name="lewis"
description="Lewis - Let's write intricate simulators!"
requires-python=">=3.10"
readme="README.md"
classifiers=[
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering",
"Topic :: Software Development :: Libraries",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
]
license= {file = "LICENSE"}
dynamic=["version"]
authors=[
{name = "ScreamingUdder"},
{name = "ISIS Experiment Controls", email="[email protected]"}
]
keywords=["hardware", "controls", "epics", "simulation"]
dependencies=[
"pyzmq",
"json-rpc",
"semantic_version",
"PyYAML",
"scanf",
"pyasynchat;python_version >= '3.12'",
]
[project.optional-dependencies]
epics = ["pcaspy"]
doc = [
"sphinx",
"sphinx_rtd_theme",
"myst_parser",
"sphinx-autobuild",
]
dev = [
"parameterized",
"lewis[doc]",
"pytest",
"pytest-cov",
"coverage",
"tox",
"approvaltests",
"pytest-approvaltests",
"ruff",
"pyright"
]
[project.scripts]
lewis = "lewis.scripts.run:run_simulation"
lewis-control = "lewis.scripts.control:control_simulation"
[project.urls]
"Homepage" = "https://github.com/ISISComputingGroup/lewis"
"Bug Reports" = "https://github.com/ISISComputingGroup/lewis/issues"
"Source" = "https://github.com/ISISComputingGroup/lewis"
[tool.setuptools.packages.find]
exclude=["tests", "tests.*"]