Skip to content
This repository was archived by the owner on Aug 28, 2023. It is now read-only.

Commit 0741e9c

Browse files
authored
Create setup.py
1 parent 6864c05 commit 0741e9c

File tree

1 file changed

+31
-0
lines changed

1 file changed

+31
-0
lines changed

setup.py

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
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+
author_email="[email protected]",
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

Comments
 (0)