forked from datamade/django-councilmatic
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
40 lines (37 loc) · 1.41 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
import os
from setuptools import setup
with open(os.path.join(os.path.dirname(__file__), 'README.rst')) as readme:
README = readme.read()
# allow setup.py to be run from any path
os.chdir(os.path.normpath(os.path.join(os.path.abspath(__file__), os.pardir)))
setup(
name='django-councilmatic',
version='0.5.4',
packages=['councilmatic_core'],
include_package_data=True,
license='MIT License', # example license
description='Core functions for councilmatic.org family',
long_description=README,
url='http://councilmatic.org/',
author='DataMade, LLC',
author_email='info@datamade.us',
install_requires=['requests==2.7.0',
'pytz==2015.4',
'django==1.9.7',
'django-haystack==2.5.dev1',
'pysolr==3.3.2',
'jsonfield',
'python-dateutil==2.4.2'],
classifiers=[
'Environment :: Web Environment',
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License', # example license
'Operating System :: OS Independent',
'Programming Language :: Python',
# Replace these appropriately if you are stuck on Python 2.
'Programming Language :: Python :: 3.4',
'Topic :: Internet :: WWW/HTTP',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
],
)