-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·29 lines (26 loc) · 963 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
26
27
28
29
#!/usr/bin/env python
from setuptools import find_packages, setup
import os
# Utility function to read README file
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(name='django-credits',
version='0.2.0',
description="A marquee for giving credit to contributors.",
author='Bob Erb',
author_email='[email protected]',
url='https://github.com/rerb/django-credits',
long_description=read("README.rst"),
packages=find_packages(),
include_package_data=True,
classifiers=[
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Framework :: Django',
],
install_requires=["Django>=1.4"],
zip_safe=False)