-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
executable file
·30 lines (28 loc) · 972 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
from setuptools import setup
version = '0.1.3'
setup(
name='gsqlite3',
description="A wrapper for 'sqlite3' to make it play better with 'gevent'",
version=version,
author='Giles Brown',
author_email='[email protected]',
url='http://github.com/gilesbrown/gsqlite3',
download_url = 'http://github.com/gilesbrown/gsqlite3/tarball/' + version,
license='BSD',
py_modules=['gsqlite3'],
install_requires=['gevent>=1.0.1'],
classifiers=(
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Natural Language :: English',
'License :: OSI Approved :: BSD License',
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
),
entry_points = """
[sqlalchemy.dialects]
sqlite.gsqlite3 = gsqlite3:SQLiteDialect_gsqlite3
"""
)