-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
27 lines (24 loc) · 941 Bytes
/
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
try:
from setuptools import setup
except ImportError:
from distutils.core import setup # can't have the entry_points option here.
setup(name='prayertime',
version='2.4',
author = "Ahmed T. Youssef",
author_email="xmonader@gmail.com",
description='prayertimes calculations for Python',
long_description='calculate prayertimes and qibla direction',
py_modules=['prayertime'],
url="http://github.com/xmonader/prayertime",
license='BSD 3-Clause License',
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Console',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Software Development :: Libraries :: Python Modules',
],
)