-
Notifications
You must be signed in to change notification settings - Fork 5
/
setup.py
38 lines (35 loc) · 1.29 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
from setuptools import setup, find_packages
import os
import sys
sys.path.insert(0, os.path.abspath(os.path.dirname(__file__)))
import mezzanine_polls
setup(
name='mezzanine-polls',
version=mezzanine_polls.__version__,
url='https://bitbucket.org/sebasmagri/mezzanine_polls',
author='Sebastian Magri',
author_email='[email protected]',
license='BSD',
description='Polls application for the Mezzanine CMS',
long_description=open('README.rst').read(),
keywords='django, mezzanine, polls',
packages=find_packages(),
setup_requires=('setuptools'),
install_requires=('setuptools', 'mezzanine'),
classifiers=[
'Development Status :: 3 - Alpha',
'Environment :: Web Environment',
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Internet :: WWW/HTTP',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
'Topic :: Internet :: WWW/HTTP :: WSGI',
'Topic :: Software Development :: Libraries :: Application Frameworks',
'Topic :: Software Development :: Libraries :: Python Modules',
],
zip_safe=False,
include_package_data=True,
)