forked from OpenDataServices/flatten-tool
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
23 lines (20 loc) · 662 Bytes
/
setup.py
File metadata and controls
23 lines (20 loc) · 662 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
from setuptools import setup
import sys
install_requires = ['jsonref', 'schema', 'openpyxl>=2.5', 'six', 'pytz', 'xmltodict', 'lxml']
if sys.version < '3':
install_requires.append('unicodecsv')
setup(
name='flattentool',
version='0.5.0',
author='Open Data Services',
author_email='data@opendataservices.coop',
packages=['flattentool'],
scripts=['flatten-tool'],
url='https://github.com/OpenDataServices/flatten-tool',
license='MIT',
description='Tools for generating CSV and other flat versions of the structured data',
install_requires=install_requires,
extras_require = {
'HTTP': ['requests']
}
)