forked from mastizada/dbConnect
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
26 lines (25 loc) · 780 Bytes
/
setup.py
File metadata and controls
26 lines (25 loc) · 780 Bytes
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
from setuptools import setup
setup(
name='dbConnect',
version='1.4.6',
description='MySQL for Humans',
keywords='dbConnect mysql simple easy, light connection module',
url='https://github.com/mastizada/dbConnect',
author='Emin Mastizada',
author_email='emin@linux.com',
license='MPLv2',
packages=['dbConnect'],
install_requires=[
'setuptools',
],
classifiers=[
'Development Status :: 5 - Production/Stable',
'License :: OSI Approved :: Mozilla Public License 2.0 (MPL 2.0)',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Database :: Front-Ends',
'Environment :: Plugins',
],
scripts=['dbConnect/dbConnect.py'],
zip_safe=False
)