-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
47 lines (40 loc) · 1.49 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
39
40
41
42
43
44
45
46
47
#!/usr/bin/env python
# -*- coding:utf-8 -*-
from setuptools import setup, find_packages
from opps import polls
install_requires = ["opps>=0.2", "django-endless-pagination"]
classifiers = ["Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Framework :: Django",
'Programming Language :: Python',
"Programming Language :: Python :: 2.7",
"Operating System :: OS Independent",
"Topic :: Internet :: WWW/HTTP :: Dynamic Content",
'Topic :: Software Development :: Libraries :: Python Modules']
try:
long_description = open('README.md').read()
except:
long_description = polls.__description__
setup(
name='opps-polls',
namespace_packages=['opps', 'opps.polls'],
version=polls.__version__,
description=polls.__description__,
long_description=long_description,
classifiers=classifiers,
keywords='poll opps cms django apps magazines websites',
author=polls.__author__,
author_email=polls.__email__,
url='http://oppsproject.org',
download_url="https://github.com/opps/opps-polls/tarball/master",
license=polls.__license__,
packages=find_packages(exclude=('doc', 'docs',)),
package_dir={'opps': 'opps'},
install_requires=install_requires,
include_package_data=True,
package_data={
'polls': ['templates/*']
}
)