forked from palewire/django-calaccess-raw-data
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
45 lines (43 loc) · 1.32 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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import setup
setup(
name='django-calaccess-raw-data',
version='0.2.2',
packages=(
'calaccess_raw',
'calaccess_raw.admin',
'calaccess_raw.management',
'calaccess_raw.management.commands',
'calaccess_raw.models',
),
include_package_data=True,
license='MIT',
description='A Django app to download, extract and load campaign \
finance and lobbying activity data from the California \
Secretary of State\'s CAL-ACCESS database',
url='http://django-calaccess-raw-data.californiacivicdata.org/',
author='California Civic Data Coalition',
author_email='[email protected]',
install_requires=(
'django>=1.8',
'csvkit',
'requests',
'clint',
'hurry.filesize',
'django-postgres-copy',
'pytz',
),
classifiers=(
'Development Status :: 4 - Beta',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
'Framework :: Django',
'Framework :: Django :: 1.8',
'Framework :: Django :: 1.9',
'License :: OSI Approved :: MIT License',
),
)