forked from cxcsds/ds9samp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
41 lines (36 loc) · 1.09 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "ds9samp"
version = "0.0.3"
authors = [
{ name = "Douglas Burke", email="[email protected]" }
]
description = "Control SAOImageDS9 from Python"
readme = "README.md"
requires-python = ">=3.10"
dependencies = [
"astropy",
"numpy>=1.20"
]
classifiers = [
"Programming Language :: Python :: 3",
# Match DS9
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: POSIX",
# "Operating System :: Microsoft :: Windows", I assume this would work
"Development Status :: 3 - Alpha",
"Environment :: X11 Applications",
"Intended Audience :: Science/Research",
"Topic :: Communications",
"Topic :: Multimedia :: Graphics :: Viewers",
"Topic :: Scientific/Engineering :: Astronomy"
]
[project.urls]
Homepage = "https://github.com/cxcsds/ds9samp"
Issues = "https://github.com/cxcsds/ds9samp/issues"
[project.scripts]
ds9samp_get = "ds9samp.scripts:main_get"
ds9samp_set = "ds9samp.scripts:main_set"
ds9samp_list = "ds9samp.scripts:main_list"