forked from nakagami/pyfirebirdsql
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
executable file
·38 lines (34 loc) · 1.11 KB
/
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
33
34
35
36
37
38
#!/usr/bin/env python
""" firebirdsql package is a set of Firebird RDBMS bindings for python.
It works on Python 2.5+ (include Python 3.x).
import firebirdsql
conn = firebirdsql.connect(dsn='localhost/3050:/foo/bar.fdb', user='alice', password='secret')
cur = conn.cursor()
cur.execute("select * from baz")
for c in cur.fetchall():
print(c)
conn.close()
"""
from distutils.core import setup
import firebirdsql
classifiers = [
'Development Status :: 4 - Beta',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3',
'Topic :: Database',
]
setup(name='firebirdsql',
version=firebirdsql.__version__,
description = 'Firebird RDBMS bindings for python.',
url='http://github.com/nakagami/pyfirebirdsql/',
classifiers=classifiers,
keywords=['Firebird'],
license='BSD',
author='Hajime Nakagami',
author_email='[email protected]',
packages = ['firebirdsql'],
long_description=__doc__,
)