-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
58 lines (52 loc) · 1.24 KB
/
pyproject.toml
File metadata and controls
58 lines (52 loc) · 1.24 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
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "TUI"
dynamic = ["version"]
authors = [
{name="Russel Owen"},
{name="Gordon MacDonald", email="gmacdonald@apo.nmsu.edu"},
]
description = "A Telescope User Interface for the ARC 3.5m telescope."
readme = "README.md"
requires-python = ">=3.9"
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
"Framework :: Twisted",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Astronomy",
]
dependencies = [
"astropy",
"matplotlib",
"numpy",
"pillow",
"pmw",
"pygame",
"scipy",
"twisted",
"pyobjc; sys_platform == 'darwin'",
"pywin32; sys_platform == 'win32'",
]
[project.urls]
Homepage = "https://github.com/ApachePointObservatory/TUI3"
Issues = "https://github.com/ApachePointObservatory/TUI3/issues"
[tool.setuptools.dynamic]
version = { attr = "TUI.Version.VersionName" }
[tool.setuptools.package-data]
"TUI" = [
"Grids/**",
"Help/**",
"Sounds/**",
]
"RO" = ["Bitmaps/*"]
[tool.setuptools.packages.find]
where = ["."]
include = [
"TUI*",
"RO*",
]
[project.scripts]
tui = "TUI.Main:runTUIWithLog"