-
Notifications
You must be signed in to change notification settings - Fork 5
/
setup.py
52 lines (44 loc) · 1.38 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
""" setup.py
SUMMARY: Command-line universal database client.
REPOSITORY: https://github.com/DavidJLambert/Python-Universal-DB-Client
AUTHOR: David J. Lambert
VERSION: 0.7.6
DATE: Jul 9, 2020
"""
from distutils.core import setup
with open("README.rst", 'r') as f:
long_description = f.read()
setup(
author='David J. Lambert',
author_email='David5Lambert7@gmail.com',
description='Python Universal Database Client',
license='MIT License',
long_description=long_description,
long_description_content_type='text/x-rst',
name='UniversalClient',
py_modules=["UniversalClient"],
url='https://github.com/DavidJLambert/Python-Universal-DB-Client',
version='0.2.7',
install_requires=[
oracledb,
psutil,
psycopg2,
pymysql,
pyodbc,
pytest,
],
classifiers=[
'Development Status :: 3 - Alpha',
'Environment :: Console',
'License :: OSI Approved :: MIT License',
'Intended Audience :: End Users/Desktop',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Topic :: Database :: Front-Ends',
],
)