-
Notifications
You must be signed in to change notification settings - Fork 32
/
setup.py
44 lines (41 loc) · 1.24 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
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
release_tag = "0.9.8"
setuptools.setup(
name="planetary-system-stacker",
version=release_tag,
author="Rolf Hempel",
author_email="rolf6419@gmx.de",
description="PlanetarySystemStacker",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/Rolf-Hempel/PlanetarySystemStacker",
packages=setuptools.find_packages(),
ext_modules=None,
install_requires=[
'numpy < 1.23.0',
'matplotlib',
'psutil',
'PyQt5 >= 5.15',
'scipy',
'astropy',
'scikit-image',
'opencv-python'
],
include_package_data=True,
classifiers=[
"Programming Language :: Python :: 3",
"Development Status :: 4 - Beta",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: Microsoft :: Windows",
# "Operating System :: POSIX :: Linux",
# "Operating System :: MacOS"
],
python_requires='>=3.5, <3.7',
entry_points={
"console_scripts": [
"PlanetarySystemStacker=planetary_system_stacker.planetary_system_stacker:main",
]
},
)