forked from jiangwen365/pypyodbc
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
26 lines (24 loc) · 743 Bytes
/
setup.py
File metadata and controls
26 lines (24 loc) · 743 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
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
import pypyodbc
setup(
name='pypyodbc',
version=pypyodbc.version,
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',
)