-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
26 lines (25 loc) · 892 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
from setuptools import setup, find_packages
setup(
name = "django-backcap",
author = "Guillaume Libersat",
author_email = "[email protected]",
description = "Support module for community driven django websites.",
long_description = open("README.rst").read(),
license = "GPL v3",
url = "http://github.com/SpreadBand/django-backcap",
packages=find_packages(),
include_package_data=True,
install_requires=["django-notification==1.0",
"django-voting==0.2",
],
zip_safe=False,
classifiers = [
"Development Status :: 3 - Alpha",
"Environment :: Web Environment",
"Intended Audience :: Developers",
"License :: OSI Approved :: GPL License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Framework :: Django",
]
)