-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·34 lines (33 loc) · 906 Bytes
/
setup.py
File metadata and controls
executable file
·34 lines (33 loc) · 906 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
from setuptools import setup, find_packages
setup(
name='OpenAstro2',
version='2.0.0',
description='Open Source Astrology 2',
author='Pelle van der Scheer + DimmAstro',
author_email='',
url='https://github.com/dimmastro/openastro2', # ← убраны лишние пробелы
packages=find_packages(),
license='GPL',
include_package_data=True,
python_requires=">=3.9",
install_requires=[
"pyswisseph==2.10.3.2",
"pytz",
"jsonpickle",
"requests==2.31.0",
"requests_cache",
"pydantic",
"terminaltables",
"skyfield==1.46",
"pydeck==0.8.0",
"pandas==2.0.2",
"certifi==2023.11.17",
"svgwrite==1.4.3",
"numpy==1.26.4",
"openpyxl==3.1.5",
"ephem==4.2",
"geographiclib==2.0",
"json5==0.12.1",
"spiceypy==8.0.1",
],
)