-
Notifications
You must be signed in to change notification settings - Fork 9
/
setup.py
executable file
·61 lines (53 loc) · 1.61 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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
#!/usr/bin/env python
import ast
import sys
import re
from setuptools import find_packages, setup
import okcli
version = okcli.__version__
description = 'A CLI for Oracle DB Database with auto-completion and syntax highlighting.'
def get_long_description():
with open('README.md', 'r') as f:
return f.read()
setup(
name='okcli',
version=version,
author='Man AHL Technology',
author_email='[email protected]',
url='https://github.com/manahl/okcli',
packages=find_packages(),
description=description,
long_description=get_long_description(),
long_description_content_type='text/markdown',
install_requires=[
'cx_Oracle',
'cli_helpers >= 0.1.0,<=0.2.3',
'click >= 4.1',
'Pygments >= 1.6',
'prompt_toolkit==1.0.14',
'sqlparse>=0.2.2,<0.3.0',
'configobj >= 5.0.5',
'pytest',
'mock',
'ipython-sql',
],
include_package_data=True,
entry_points={
'console_scripts': ['okcli = okcli.main:cli'],
},
classifiers=[
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: Unix',
'Programming Language :: Python',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: SQL',
'Topic :: Database',
'Topic :: Database :: Front-Ends',
'Topic :: Software Development',
'Topic :: Software Development :: Libraries :: Python Modules',
],
test_suite="test",
)