-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
36 lines (31 loc) · 897 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
30
31
32
33
34
35
from setuptools import setup, find_packages
import os
version = 'svn'
LONG_DESCRIPTION = """
============
Django Voice
============
This application lets you solicit feedback and suggestions from
your users, who can then vote and comment on other suggestions.
"""
setup(
name='django-voice',
version=version,
description="django-voice",
long_description=LONG_DESCRIPTION,
classifiers=[
"Programming Language :: Python",
"Topic :: Software Development :: Libraries :: Python Modules",
"Framework :: Django",
"Environment :: Web Environment",
],
keywords='django,feedback,discussion',
author='Huwshimi',
author_email='[email protected]',
url='http://code.google.com/p/django-voice/',
license='BSD',
packages=find_packages(),
include_package_data=True,
zip_safe=False,
install_requires=['setuptools'],
)