-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·42 lines (37 loc) · 1.34 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
37
38
39
40
41
42
#!/usr/bin/env python
from setuptools import find_packages, setup
import sys
def readme():
with open('README.rst') as f:
return f.read()
install_requires = ["django>=1.7",
"djangorestframework",
"markdown"]
if sys.version_info[0] == 2:
install_requires.append("pathlib2")
setup(name="django-fortune",
version="1.1.1",
description="A Django template-tag for fortunes.",
long_description=readme(),
packages=find_packages(),
include_package_data=True,
author="Robert Erb",
author_email="[email protected]",
license="GPL3",
keywords="django fortune",
url="https://github.com/rerb/django-fortune",
install_requires=install_requires,
test_suite='runtests.runtests',
classifiers=[
"Environment :: Web Environment",
"Intended Audience :: Developers",
"License :: OSI Approved :: GNU General Public License (GPL)",
"Operating System :: OS Independent",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Framework :: Django",
"Development Status :: 5 - Production/Stable"
])