-
Notifications
You must be signed in to change notification settings - Fork 32
/
setup.py
36 lines (32 loc) · 1.13 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
33
34
35
36
import re
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
with open("pyIslam/__init__.py", "r", encoding="utf8") as f:
version = re.search(r'__version__ = "(.*?)"', f.read()).group(1)
with open("README.md", "rb") as f:
readme = f.read().decode("utf-8")
setup(
name="islam",
version=version,
description="a library to calculate prayer times, hijri date, qiblah direction and more",
long_description=readme,
long_description_content_type="text/markdown",
url="https://github.com/abougouffa/pyIslam",
author="abougouffa",
author_email="[email protected]",
license="GPL3+",
classifiers=[
"Intended Audience :: Developers",
"Topic :: Utilities",
"License :: OSI Approved :: GNU Lesser General Public License v3 or later (LGPLv3+)",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3.7",
],
keywords="prayer times, hijri date, qiblah direction",
include_package_data=True,
packages=["pyIslam"],
)