-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
26 lines (25 loc) · 904 Bytes
/
setup.py
File metadata and controls
26 lines (25 loc) · 904 Bytes
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
import os
setup(
name = "cmsplugin-poll",
packages = find_packages(),
version = "0.3",
description = "Simple poll plugin for django-cms 2.2",
long_description=open(os.path.join(os.path.dirname(__file__), 'README.rst')).read(),
author = "Antoine Nguyen",
author_email = "tonio@ngyn.org",
url = "http://bitbucket.org/tonioo/cmsplugin-poll",
license = "BSD",
keywords = ["django", "django-cms", "poll"],
classifiers = [
"Programming Language :: Python",
"Environment :: Web Environment",
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Framework :: Django"
],
include_package_data = True,
install_requires = ['setuptools', 'django-cms'],
)