-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
33 lines (31 loc) · 1.01 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
from setuptools import setup
# Read the README.md file
with open('README.md') as file_handle:
file_content = file_handle.read()
setup(
name='kamalsql',
packages=['kamalsql'],
version='1.0.0',
license='MIT',
description='A simple Python wrapper for your MySQL needs.',
long_description=file_content,
long_description_content_type="text/markdown",
author='Kamal Sharma',
author_email='[email protected]',
url='https://github.com/KamalDGRT/kamalsql',
keywords=['Simple', 'Functional', 'Dependable'],
install_requires=[
'mysql-connector',
'tabulate',
],
classifiers=[
'Development Status :: 1 - Planning',
'Intended Audience :: Developers',
'Natural Language :: English',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Database',
'Topic :: Software Development :: Libraries',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
],
)