-
Notifications
You must be signed in to change notification settings - Fork 12
/
setup.py
32 lines (29 loc) · 1.41 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
from setuptools import setup, find_packages
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setup(
name="vedicastro",
version="0.2.1",
author="Dilip Rajkumar",
author_email="diliprajkumar@gmail.com",
description="A python package for Vedic Astrology, with a particular focus on the Krishnamurthi Paddhati system",
license="MIT",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/diliprk/VedicAstro",
package_data={'vedicastro': ['data/*.csv']},
packages=find_packages(),
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
python_requires='>=3.11',
install_requires=["tqdm","polars","fastapi","uvicorn","prettytable","ipykernel","pyswisseph"],
dependency_links=["git+https://github.com/diliprk/flatlib.git@sidereal#egg=flatlib"]
)
print("IMPORTANT NOTE: PyPI no longer supports specifying external packages in `install_requires`")
print("Packages specified in `dependency_links` will also not get automatically installed")
print("To install the required package 'flatlib' from the 'sidereal' branch, run the following command \
after completion of `pip install vedicastro` process:")
print("pip install git+https://github.com/diliprk/flatlib.git@sidereal#egg=flatlib")