-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
35 lines (32 loc) · 882 Bytes
/
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
[project]
name = "seibot"
version = "0.0.0"
authors = [
{name="Terrence Tsang", email="[email protected]"},
{name="Sushant Sharma-Chaudhary", email="[email protected]"}
]
description = "Semi-adaptive seismic isolation control framework for LIGO"
readme = "README.md"
requires-python = ">=3.8,<3.10"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = [
"cdsutils",
"control",
# "python-foton",
"numpy",
"matplotlib",
"scipy",
]
[tool.setuptools]
packages = ["seibot", "seibot.gui", "seibot.gui.option"]
py-modules = ["__init__"]
[project.urls]
Homepage = "https://github.com/terrencetec/seibot"
Issues = "https://github.com/terrencetec/seibot/issues"
[project.scripts]
seibot = "seibot:cmd.main"
seibot-gui = "seibot.gui:run.main"