-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
46 lines (41 loc) · 1015 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
38
39
40
41
42
43
44
45
46
[build-system]
requires = ["setuptools", "wheel"]
[project]
name = "EuclidLike"
version = "0.9.0"
authors = [
{ name="GalSim Developers", email="dummy@gmail.com" },
]
description = "GalSim helper function for Euclid-like simulation"
readme = "README.md"
requires-python = ">=3.10"
license = {text = "GalSim"}
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
]
dependencies = [
"numpy>=1.17",
"galsim>=2.6",
"astropy>=2.0",
]
[project.urls]
"Homepage" = "https://github.com/GalSim-developers/GalSim-Euclid-Like"
"Bug Tracker" = "https://github.com/GalSim-developers/GalSim-Euclid-Like/issues"
[tool.setuptools]
packages = [
"euclidlike",
"euclidlike_imsim",
"scripts",
]
include-package-data = true
[tool.setuptools.package-data]
"*" = [
"data/*.dat",
"data/*.pkl",
"data/*.fits",
"data/*.fits.gz",
]
[project.scripts]
euclidlike_download_psf = "scripts.download_psf:run_main"
euclidlike_make_obseq = "scripts.make_obseq:run_main"