-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject_setuptools.toml
96 lines (85 loc) · 2.31 KB
/
pyproject_setuptools.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
93
94
95
96
[build-system]
requires = [
"setuptools",
# "setuptools_scm>=6.2",
"wheel",
]
build-backend = "setuptools.build_meta"
# [tool.setuptools_scm]
# write_to = "astropy/_version.py"
[constant]
board_size = 3
[project]
name = "rapyuta"
authors = [
{name = "D. HU"},
{email = "[email protected]"}
]
maintainers = [
{name = "D. HU"},
{email = "[email protected]"}
]
license = {text = "BSD 3-Clause License"}
description = "Regular AstroPY UTility Assemblage"
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",
]
requires-python = ">=3.8"
dependencies = [
'astropy>=5.1',
'colorama',
'h5py',
'matplotlib',
'numpy',
'photutils',
'reproject>=0.7.1',
'scipy',
'specutils',
'tqdm',
]
dynamic = ["version", "readme"]
[project.urls]
repository = "https://github.com/kxxdhdn/RAPYUTA"
# homepage = ""
# documentation = ""
manual = "https://github.com/kxxdhdn/RAPYUTA/man"
reports = "https://github.com/kxxdhdn/RAPYUTA/issues"
source = "https://github.com/kxxdhdn/RAPYUTA/rapyuta"
[project.scripts]
rapyboost = "rapyuta:boost_rapyuta"
[tool.setuptools]
zip-safe = false
include-package-data = true # (true by default)
[tool.setuptools.dynamic]
version = {attr = "rapyuta.version.__version__"}
readme = {file = "README.org"}
# [tool.setuptools.packages]
# find = {} # Scan the project directory with the default parameters
[tool.setuptools.packages.find]
where = ["."] # list of folders that contain the packages (["."] by default)
include = ["rapyuta*"] # package names should match these glob patterns (["*"] by default)
exclude = ["rapyuta._dev"] # exclude packages matching these glob patterns (empty by default)
namespaces = false # to disable scanning PEP 420 namespaces (true by default)
[tool.cibuildwheel.macos]
archs = ["x86_64", "arm64"]
[tool.cibuildwheel.linux]
archs = ["auto", "aarch64"]