forked from alanjds/umysqldb
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
30 lines (28 loc) · 1014 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
29
30
import os
from setuptools import setup, find_packages
install_requires = [
'umysql>=2.61',
'pymysql>=0.6',
]
setup(
name = 'umysqldb',
description = "MySQLdb compatible wrapper for ultramysql",
long_description = open(os.path.join(os.path.dirname(__file__),
'README.rst')).read(),
version = '1.0.4dev',
packages = find_packages(exclude=['examples', 'tests']),
install_requires = install_requires,
author = "Qiangning Hong",
author_email = "hongqn@douban.com",
license="BSD License",
platforms=['any'],
url="https://github.com/hongqn/umysqldb",
classifiers=["Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Programming Language :: Python",
"Topic :: Database",
"Topic :: Software Development :: Libraries :: Python Modules",
],
test_suite = 'nose.collector',
tests_require = ['nose', 'mock'],
)