-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
33 lines (31 loc) · 955 Bytes
/
setup.py
File metadata and controls
33 lines (31 loc) · 955 Bytes
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
import os
import codecs
from setuptools import setup, find_packages
def read(fname):
file_path = os.path.join(os.path.dirname(__file__), fname)
return codecs.open(file_path, encoding='utf-8').read()
setup(
name='ctdata_sots_cli',
description='CLI tool for preparing and publishing CT Secretary of State data',
long_description=read('README.rst'),
url='https://github.com/CT-Data-Collaborative/ctdata-sots-cli',
packages=find_packages(),
package_dir={'ctdata_sots_cli': 'ctdata_sots_cli'},
author='Sasha Cuerda',
author_email='scuerda@ctdata.org',
license='MIT',
version='0.1',
install_requires=[
'click>=6.7',
'PyYaml==3.12',
'SQLAlchemy==1.1.5',
'psycopg2==2.7.1',
'python-dotenv==0.6.3',
'unicodecsv==0.14.1'
],
entry_points={
'console_scripts': [
'sots = ctdata_sots_cli.__main__:main',
]
},
)