forked from jiangwen365/pypyodbc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
32 lines (29 loc) · 846 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
31
32
import sys
if len(sys.argv) == 1:
sys.argv.append('install')
try:
from setuptools import setup
except:
from distutils.core import setup
setup(
name='pypyodbc',
version='1.0.5',
description='A Pure Python ctypes ODBC module',
author='jiangwen365',
author_email='[email protected]',
url='http://code.google.com/p/pypyodbc/',
py_modules=['pypyodbc'],
long_description="""\
A Pure Python ctypes ODBC module compatible with PyPy and almost totally same usage as pyodbc
""",
classifiers=[
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Development Status :: 4 - Beta",
],
keywords='Python, Database, Interface, ODBC, PyPy',
license='MIT',
install_requires=[
'setuptools',
],
)