forked from jart/occupywallst
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
41 lines (36 loc) · 1.51 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
# 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.3', 'python-memcached>=1.40', 'pytz',
'markdown', 'twilio', 'django-debug-toolbar',
'recaptcha-client', 'gunicorn'],
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 :: 4 - Beta",
"License :: OSI Approved :: GNU Affero General Public License v3",
"Programming Language :: Python",
"Framework :: Django",
"Topic :: Communications",
"Topic :: Internet :: WWW/HTTP",
],
)