-
Notifications
You must be signed in to change notification settings - Fork 18
/
setup.py
executable file
·38 lines (34 loc) · 1.07 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
#!/usr/bin/env python
"""
Setup for SQLAlchemy backend for MonetDB
"""
from setuptools import find_packages, setup
import os
readme = os.path.join(os.path.dirname(__file__), 'README.md')
setup_params = dict(
name="sqlalchemy_monetdb",
description="SQLAlchemy dialect for MonetDB",
long_description=open(readme).read(),
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: Developers',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: Implementation :: CPython',
'Programming Language :: Python :: Implementation :: PyPy',
'Topic :: Database :: Front-Ends',
],
keywords='MonetDB SQLAlchemy',
packages=find_packages(),
include_package_data=True,
tests_require=['nose >= 0.11'],
test_suite="nose.collector",
zip_safe=False,
entry_points={
"sqlalchemy.dialects": ["monetdb = sqlalchemy_monetdb:dialect"]
},
license="MIT",
)
if __name__ == '__main__':
setup(**setup_params)