forked from OpenBudget/budgetkey-data-pipelines
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
37 lines (35 loc) · 1.5 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
#!/usr/bin/env python
from setuptools import setup, find_packages
import os, time
if os.path.exists("VERSION.txt"):
# this file can be written by CI tools to set the version (e.g. from tag name)
with open("VERSION.txt") as version_file:
version = version_file.read().strip().strip("v")
else:
# no version - ensure it gets a new version every install to force upgrade
version = str(time.time())
print(find_packages(exclude=["tests", "test.*"]))
setup(
name='datapackage-pipelines-budgetkey',
version=version,
packages=find_packages(exclude=["tests", "test.*"]),
install_requires=['pyquery',
'demjson',
'requests',
'selenium',
'fuzzywuzzy[speedup]',
'plyvel',
'filemagic',
'dataflows-elasticsearch>=0.0.3',
'datapackage-pipelines-aws',
'textract==1.5.0', # later versions of textract introduce unnecessary dependency on swig
# see this issue - https://github.com/deanmalmgren/textract/issues/159
# 'urllib3==1.21.1',
'geocoder',
'boto3',
'paramiko',
'dataflows>=0.0.65',
],
extras_require={'develop': ["tox", "datapackage-pipelines"]},
entry_points={'console_scripts': ['budgetkey-dpp = datapackage_pipelines_budgetkey.cli:main']}
)