-
Notifications
You must be signed in to change notification settings - Fork 32
/
setup_windows.py
43 lines (40 loc) · 1.19 KB
/
setup_windows.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
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
release_tag = "0.9.8.1"
setuptools.setup(
name="planetary-system-stacker",
version=release_tag,
author="Rolf Hempel",
author_email="[email protected]",
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',
'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 :: OS Independent"
"Operating System :: Microsoft :: Windows"
],
python_requires='>=3.5',
entry_points={
"console_scripts": [
"PlanetarySystemStacker=planetary_system_stacker.planetary_system_stacker:main",
]
},
)