forked from pypyodbc/pypyodbc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
24 lines (23 loc) · 767 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
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
setup(
name='pypyodbc',
version='0.0.0a0', # actual version injected at release build time
description='A Pure Python ctypes ODBC module',
author='jiangwen365',
author_email='jiangwen365@gmail.com',
url='https://github.com/jiangwen365/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',
)