-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
34 lines (32 loc) · 1.04 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
#!/usr/bin/env python
from setuptools import setup, find_packages
from codecs import open
from os import path
import tdq._version
here = path.abspath(path.dirname(__file__))
with open(path.join(here, 'README.md'), encoding='utf-8') as f:
long_description = f.read()
setup (
name='tdq',
packages=find_packages(),
version=tdq._version.__version__,
license='Apache',
install_requires=[
"setuptools>=40.3.0","td-client","prompt-toolkit","sqlparse","prettytable"
],
author='bachng',
author_email='bachng@gmail.com',
url='https://github.com/bachng2017/tdq',
description='A Treasure Data query shell',
long_description=long_description,
long_description_content_type='text/markdown',
keywords='python treasuredata shell sql',
classifiers=[
"License :: OSI Approved :: Apache Software License",
'Programming Language :: Python :: 3.8',
],
entry_points = {
'console_scripts': ['tdq = tdq.shell:main'] },
include_package_data=True,
python_requires='>=3.8',
)