-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
40 lines (37 loc) · 1.18 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
39
40
#!/usr/bin/env python
"""fdb package is a set of Firebird RDBMS bindings for python.
It works on Python 2.6+ and Python 3.x.
"""
from setuptools import setup, find_packages
from fdb import __version__
classifiers = [
'Development Status :: 5 - Production/Stable',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Database',
]
setup(name='fdb',
version=__version__,
description = 'Firebird RDBMS bindings for Python.',
url='http://www.firebirdsql.org/en/devel-python-driver/',
classifiers=classifiers,
keywords=['Firebird'],
license='BSD',
author='Pavel Cisar',
author_email='[email protected]',
long_description=__doc__,
install_requires=[],
setup_requires=[],
packages=find_packages(exclude=['ez_setup']),
test_suite='nose.collector',
#include_package_data=True,
package_data={'': ['*.txt'],
'test':'fbtest.fdb'},
#message_extractors={'fdb': [
#('**.py', 'python', None),
#('public/**', 'ignore', None)]},
zip_safe=False,
entry_points="""
""",
)