forked from DallasMorningNews/socrata2sql
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
36 lines (32 loc) · 970 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
35
36
from os import path
from setuptools import setup
from socrata2sql import __version__
readme_path = path.join(path.abspath(path.dirname(__file__)), 'README.md')
with open(readme_path, encoding='utf-8') as f:
long_description = f.read()
setup(
name='socrata2sql',
version=__version__,
description='SQL loader for Socrata data sets',
long_description=long_description,
long_description_content_type='text/markdown',
url='http://github.com/DallasMorningNews/socrata2sql',
author='Andrew Chavez / The Dallas Morning News',
author_email='[email protected]',
license='MIT',
packages=['socrata2sql'],
install_requires=[
'docopt~=0.6',
'progress~=1.4',
'sodapy~=1.5',
'SQLalchemy~=1.2',
'tabulate~=0.8',
'geoalchemy2~=0.5',
],
entry_points={
'console_scripts': [
'socrata2sql=socrata2sql.cli:main',
],
},
python_requires=">=3"
)