forked from openelections/openelections-core
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
46 lines (43 loc) · 1.26 KB
/
setup.py
File metadata and controls
46 lines (43 loc) · 1.26 KB
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
46
#!/usr/bin/env python
import sys
from setuptools import setup, find_packages
# TODO: More informative message about Python version support, version reflected
# classifiers argument to setup(). Perhaps setup should fail altogether for
# unsupported Python versions.
if sys.version_info < (2,7) or sys.version_info >= (3,):
print("This package is primarily developed and tested using Python 2.7.*. "
"It may not not work with older or newer Python distributions.")
setup(
name='OpenElections Core',
version='0.1.0',
author='OpenElections',
author_email='openelections@gmail.com',
url='http://openelections.net',
packages=find_packages(),
include_package_data=True,
install_requires=[
'beautifulsoup4==4.3.2',
'blinker==1.3',
'boto==2.9.7',
'ipython==0.13.2',
'mongoengine==0.8.4',
'nameparser==0.2.7',
'ordered-set==1.1',
'requests>=2.0',
'unicodecsv==0.9.4',
'us==0.7',
'xlrd==0.9.2',
'github3.py==0.9.0',
'click==3.3',
],
tests_require=[
'mock==1.0.1',
'nose==1.3.0',
'factory_boy>=2.3',
],
entry_points={
'console_scripts': [
'openelex = openelex.tasks:cli',
],
}
)