-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
31 lines (27 loc) · 821 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
from setuptools import setup
with open('VERSION') as f:
VERSION = f.read().strip()
with open('README.md') as f:
LONG_DESCRIPTION = f.read()
with open('requirements.txt') as f:
INSTALL_REQUIRES = [line.strip() for line in f if line.strip()]
setup(
name='sqlcsv',
version=VERSION,
license='MIT',
description='Import/Export data to/from relational databases using SQL statements with CSV files', # noqa
long_description=LONG_DESCRIPTION,
long_description_content_type='text/markdown',
url='https://github.com/yubessy/sqlcsv',
author='Shotaro Tanaka',
author_email='yubessy0@gmail.com',
packages=[
'sqlcsv',
],
entry_points=dict(
console_scripts=[
'sqlcsv=sqlcsv.cli:cli',
],
),
install_requires=INSTALL_REQUIRES,
)