-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
45 lines (40 loc) · 900 Bytes
/
pyproject.toml
File metadata and controls
45 lines (40 loc) · 900 Bytes
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
[build-system]
requires = ["numpy", "py-build-cmake", "wheel"]
build-backend = "py_build_cmake.build"
[project]
name = "vstarstack"
version = "0.3.8"
requires-python = ">=3.10"
authors = [{name="Vladislav Tsendrovskii", email="vtcendrovskii@gmail.com"}]
description = 'Stacking astrophotos'
readme = "readme.md"
license = "GPL-3.0"
license-files = ["LICENSE.txt"]
dependencies = [
'numpy',
'astropy',
'rawpy',
'pillow',
'imageio',
'exifread',
'opencv-python',
'scikit-image',
'scipy >= 1.11.0',
'imutils',
'matplotlib',
'pytz',
'psutil',
'photutils',
]
[project.scripts]
vstarstack = "vstarstack.entry:main"
[tool.py-build-cmake.module]
directory = "src/"
name = "vstarstack"
[tool.py-build-cmake.cmake]
source_path = "src/c_modules"
install_components = [
"python_modules"
]
[tool.py-build-cmake.sdist]
include = ["src/c_modules/*"]