-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpyproject.toml
37 lines (35 loc) · 880 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
36
37
[project]
name = "sparc4-pipeline"
authors = [
{name = "Eder Martioli", email = "[email protected]"},
{name = "Julio Campagnolo", email = "[email protected]"},
]
description = ""
readme = "README.md"
requires-python = ">=3.8"
keywords = ["astronomy", "pipeline", "data reduction", "photometry",
"polarimetry", "image processing", "astrometry"]
license = {text = "GPL-3.0-or-later"}
classifiers = [
"Programming Language :: Python :: 3",
]
dependencies = [
'importlib-metadata; python_version>="3.8"',
"astropy",
"astropop",
"numpy",
"matplotlib",
"pyyaml",
"regions",
"scipy",
"uncertainties",
"photutils>=2.0",
"twirl",
"aafitrans",
]
dynamic = ["version"]
[tool.setuptools]
packages = ['sparc4']
[build-system]
requires = ["setuptools", "setuptools-scm"]
build-backend = "setuptools.build_meta"