-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
34 lines (30 loc) · 1007 Bytes
/
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
import sys
# Prevent spurious errors during `python setup.py test`, a la
# http://www.eby-sarna.com/pipermail/peak/2010-May/003357.html:
try:
import multiprocessing
except ImportError:
pass
from setuptools import setup, find_packages
setup(
name='voter-verifier-py',
version='1.0',
description='A system for matching fuzzy contact info to a registered voter',
long_description=open('README.rst').read(),
author='Erik Rose',
packages=find_packages(exclude=['ez_setup']),
tests_require=['nose'],
test_suite='nose.collector',
url='https://github.com/civiccc/voter-verifier-py',
include_package_data=True,
classifiers=[
'Intended Audience :: Developers',
'Natural Language :: English',
'Development Status :: 5 - Production/Stable',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Topic :: Software Development :: Libraries',
],
keywords=['voter', 'match', 'registration']
)