-
Notifications
You must be signed in to change notification settings - Fork 29
/
setup.py
44 lines (39 loc) · 1.73 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
# http://packages.python.org/distribute/setuptools.html
# http://diveintopython3.org/packaging.html
# http://wiki.python.org/moin/CheeseShopTutorial
# http://pypi.python.org/pypi?:action=list_classifiers
from ez_setup import use_setuptools
use_setuptools(version='0.6c11')
import os
from setuptools import setup, find_packages
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
version = __import__('occupywallst').__version__
setup(
name = 'occupywallst',
version = version,
description = "Occupy Wall Street",
long_description = read('README.rst'),
author = 'Justine Tunney',
author_email = '[email protected]',
license = 'GNU AGPL v3 or later',
install_requires = ['Django>=1.4', 'south>=0.7.5', 'pytz',
'markdown', 'twilio', 'django-debug-toolbar',
'recaptcha-client', 'gunicorn', 'django-rosetta',
'django-imagekit', 'Whoosh', 'redis', 'redisbayes',
'python-memcached>=1.40', 'slimit', 'cssmin',
'django-taggit'],
packages = find_packages(),
include_package_data = True,
zip_safe = False,
scripts = ['scripts/' + f for f in os.listdir('scripts')
if not f.startswith('.')],
classifiers = [
"Development Status :: 5 - Production/Stable",
"License :: OSI Approved :: GNU Affero General Public License v3",
"Programming Language :: Python",
"Framework :: Django",
"Topic :: Communications",
"Topic :: Internet :: WWW/HTTP",
],
)