-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
58 lines (49 loc) · 2.08 KB
/
setup.py
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
import os
from setuptools import setup, find_packages
PATH = os.path.abspath(os.path.dirname(__file__))
STARSALIGN_PATH = os.path.join(PATH, "starsalign/__init__.py")
with open(STARSALIGN_PATH, "r") as f:
for line in f:
if line.startswith("__version__"):
_, _, VERSION = line.replace('"', "").split()
break
README_MD_PATH = os.path.join(PATH, "README.md")
with open(README_MD_PATH, "r") as f:
LONG_DESCRIPTION = f.read()
setup(
name="starsalign",
version=VERSION,
packages=find_packages(),
author="Nicolas Antonio Gonzalez Figueroa",
author_email="nagonzalezf@ing.ucsc.cl",
description="A package for aligning and comparing astronomical images",
long_description=LONG_DESCRIPTION,
long_description_content_type="text/markdown",
keywords="align alignment alignment-algorithm astro astronomy astronomical-images astrophysics \
displacement-estimation difference-image-analysis flann-matchers galaxies image-processing \
image-subtraction keypoint-detection numpy opencv sift-algorithm stars starsalign",
url="https://github.com/nagonzalezf/starsalign",
project_urls={
"Source Code": "https://github.com/nagonzalezf/starsalign/starsalign",
"Bug Tracker": "https://github.com/nagonzalezf/starsalign/issues",
},
classifiers=[
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Astronomy",
"Topic :: Scientific/Engineering :: Image Processing",
],
install_requires=[
"numpy",
"opencv-python-headless"
],
)
# https://github.com/nagonzalezf/starsalign/