-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
92 lines (82 loc) · 2.04 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
[build-system]
requires = [
"poetry-core>=1.0.0",
]
build-backend = "poetry.core.masonry.api"
[constant]
board_size = 3
[tool.poetry]
name = "rapyuta"
version = "2.2.2"
description = "Regular AstroPY UTility Assemblage"
authors = [
"Dangning HU <[email protected]>",
]
maintainers = [
"Dangning HU <[email protected]>",
]
license = "BSD 3-Clause License"
readme = "README.org"
# documentation = ""
# homepage = ""
repository = "https://github.com/kxxdhdn/RAPYUTA"
keywords = [
"astronomy",
"astrophysics",
"astrometry",
"imaging",
"photometry",
"spectroscopy",
"space",
"spitzer",
"akari",
"jwst",
]
classifiers = [
"Intended Audience :: Science/Research",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Programming Language :: Fortran",
"Programming Language :: IDL",
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering :: Astronomy",
"Topic :: Scientific/Engineering :: Physics",
]
packages = [
## Poetry assumes the package contains a package with the same name as
## tool.poetry.name located in the root of the project
{ include = "rapyuta", from = "." },
]
include = [
{ path = "tests", format = "sdist" },
# { path = "for_wheel.txt", format = ["sdist", "wheel"] },
]
exclude = ["rapyuta._dev"]
[tool.poetry.dependencies]
python = ">=3.8"
astropy = ">=5.1"
colorama = "*"
h5py = "*"
matplotlib = "*"
numpy = "*"
photutils = "*"
reproject = ">=0.7.1"
scipy = "*"
specutils = "*"
tqdm = "*"
[tool.poetry.dev-dependencies]
[tool.poetry.group.test.dependencies]
# pytest = "*"
[tool.poetry.group.docs.dependencies]
# mkdocs = "*"
[tool.poetry.plugins]
[tool.poetry.scripts]
rapyboost = "rapyuta:boost_rapyuta"
[[tool.poetry.source]]
name = "tsinghua"
url = "https://mirrors.tuna.tsinghua.edu.cn/pypi/web/simple/"
default = true
[tool.poetry.urls]
manual = "https://github.com/kxxdhdn/RAPYUTA/man"
reports = "https://github.com/kxxdhdn/RAPYUTA/issues"
source = "https://github.com/kxxdhdn/RAPYUTA/rapyuta"