-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpyproject.toml
More file actions
45 lines (41 loc) · 1.11 KB
/
pyproject.toml
File metadata and controls
45 lines (41 loc) · 1.11 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
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "ullyses"
version = "4.1.0" # Set release string in release.py
description = "Create ULLYSES data products"
readme = "README.md"
requires-python = ">=3.9"
license = { file = "LICENSE" }
authors = [{ name = "ULLYSES STScI Team", email = "ullyses_dp@stsci.edu" }]
keywords = ["astronomy"]
classifiers = [
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Development Status :: 1 - Planning",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Astronomy",
"Topic :: Scientific/Engineering :: Physics",
"Topic :: Software Development :: Libraries :: Python Modules"
]
dependencies = [
"datetime",
"numpy>=1.22.4",
"cython",
"astropy>=6.0.0",
"ullyses_utils>=3.1.0",
"pandas>2.0",
"calcos>=3.4.0",
"costools",
"stistools>=1.4.2",
"matplotlib",
"ipympl",
"pyyaml",
"plotly",
"scipy>=1.11.4",
"hasp==1.0.0",
"jupyter"
]
[project.scripts]
coadd = "ullyses.ullyses_coadd_abut_wrapper:coadd_parser"