-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
51 lines (47 loc) · 1.29 KB
/
pyproject.toml
File metadata and controls
51 lines (47 loc) · 1.29 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
[build-system]
requires = [
"setuptools>=61.0",
"matplotlib",
"astropy",
"photutils",
"ginga",
"astroquery",
"numpy",
"pandas",
"regions",
"tksheet",
"twirl",
"ttkbootstrap",
"platformdirs"
]
build-backend = "setuptools.build_meta"
[project]
name = "samos"
authors = [
{ name="Brian York", email="york@stsci.edu" },
{ name="Massimo Robberto", email="robberto@stsci.edu" },
{ name="Jonathan Hoover", email="unknown@example.com" },
{ name="Dana Koeppe", email="dkoeppe1@jhu.edu" },
{ name="Kathleen Lorraine Oram", email="kxo3594@g.rit.edu" }
]
maintainers = [
{ name="Brian York", email="york@stsci.edu" },
{ name="Massimo Robberto", email="robberto@stsci.edu" },
{ name="Dana Koeppe", email="dkoeppe1@jhu.edu" }
]
description = "Control Software for the SAMOS astronomical instrument"
readme = "README.md"
requires-python = ">=3.8,<3.11"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dynamic = ["version"]
[project.urls]
Homepage = "https://github.com/mrobberto/SAMOS_NEWGUI"
Issues = "https://github.com/mrobberto/SAMOS_NEWGUI/issues"
[tool.setuptools.dynamic]
version = {attr = "samos.VERSION"}
[project.scripts]
run_samos = "samos.main:run_samos"