forked from MonetDB/sqlalchemy-monetdb
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·58 lines (54 loc) · 1.87 KB
/
setup.py
File metadata and controls
executable file
·58 lines (54 loc) · 1.87 KB
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
#!/usr/bin/env python
"""
Setup for SQLAlchemy backend for MonetDB
"""
from setuptools import find_packages, setup
import os
extras_require = {
'lite': ['numpy', 'monetdblite'],
}
readme = open(os.path.join(os.path.dirname(__file__), 'README.rst')).read()
setup_params = dict(
name="sqlalchemy_monetdb",
version='1.0.1',
description="SQLAlchemy dialect for MonetDB",
author="Gijs Molenaar",
author_email="gijsmolenaar@gmail.com",
url="https://github.com/gijzelaerr/sqlalchemy-monetdb",
long_description=readme,
extras_require=extras_require,
classifiers=[
"Topic :: Database",
"Topic :: Database :: Database Engines/Servers",
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Intended Audience :: Developers",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
"Topic :: Database :: Front-Ends",
],
keywords='MonetDB SQLAlchemy',
packages=find_packages(),
include_package_data=True,
setup_requires=['pytest-runner'],
tests_require=['pytest', 'mock'],
test_suite="test.test_suite",
zip_safe=False,
entry_points={
"sqlalchemy.dialects": [
"monetdb = sqlalchemy_monetdb.dialect:MonetDialect",
"monetdb.lite = sqlalchemy_monetdb.dialect_lite:MonetLiteDialect",
]
},
license="MIT",
install_requires=['pymonetdb', 'sqlalchemy'],
)
if __name__ == '__main__':
setup(**setup_params)