-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsetup.py
executable file
·28 lines (26 loc) · 824 Bytes
/
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
#!/usr/bin/env python
"""
Django database backend for cymysql
"""
from distutils.core import setup, Command
classifiers = [
'Development Status :: 4 - Beta',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Topic :: Database',
'Framework :: Django',
]
setup(name='django-cymysql',
version='3.2.0',
description='Django database backend for cymysql',
long_description=open('README.rst').read(),
url='https://github.com/nakagami/django-cymysql/',
classifiers=classifiers,
keywords=['MySQL', 'cymysql'],
license='BSD',
author='Hajime Nakagami',
author_email='[email protected]',
packages = ['mysql_cymysql'],
)