|
| 1 | +from setuptools import setup, find_packages |
| 2 | + |
| 3 | +with open("README.md", "r") as fh: |
| 4 | + long_description = fh.read() |
| 5 | + |
| 6 | +setup( |
| 7 | + name="aladhan", |
| 8 | + version="1.0", |
| 9 | + author="Khaled Mahmoud", |
| 10 | + |
| 11 | + description="A Python package to calculate Islamic prayer times for any location in the world.", |
| 12 | + long_description=long_description, |
| 13 | + long_description_content_type="text/markdown", |
| 14 | + url="https://www.github.com/Kh4lidMD/adhan_api", |
| 15 | + packages=find_packages(), |
| 16 | + install_requires=['requests'], |
| 17 | + classifiers=[ |
| 18 | + 'Development Status :: 4 - Alpha', |
| 19 | + 'Programming Language :: Python :: 3.6', |
| 20 | + 'Programming Language :: Python :: 3.7', |
| 21 | + 'Programming Language :: Python :: 3.8', |
| 22 | + 'Programming Language :: Python :: 3.9', |
| 23 | + 'Programming Language :: Python :: 3.10', |
| 24 | + 'Programming Language :: Python :: 3.11', |
| 25 | + 'Programming Language :: Python :: 3.12', |
| 26 | + 'Natural Language :: Arabic', |
| 27 | + 'Natural Language :: English', |
| 28 | + 'Software Development :: Libraries' |
| 29 | + 'License :: OSI Approved :: MIT License' |
| 30 | + ] |
| 31 | +) |
0 commit comments