This repository was archived by the owner on Dec 25, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
40 lines (36 loc) · 1.29 KB
/
setup.py
File metadata and controls
40 lines (36 loc) · 1.29 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
#!/usr/bin/env python
"""
Setup for SQLAlchemy backend for pyphoenix
"""
from setuptools import find_packages, setup
setup_params = dict(
name="sqlalchemy_phoenix",
version='0.4.0',
description="SQLAlchemy dialect for Phoenix",
author="Dimitri Capitaine",
author_email="grytes29@gmail.com",
classifiers=[
"Development Status :: 5 - Production/Stable",
'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='Phoenix SQLAlchemy',
packages=find_packages(),
include_package_data=True,
zip_safe=False,
entry_points={
"sqlalchemy.dialects":
["phoenix = sqlalchemy_phoenix.pyphoenix:PhoenixDialect_pyphoenix",
"phoenix.jaydebeapidb = sqlalchemy_phoenix.jaydebeapidb:PhoenixDialect_jaydebeapidb",
"phoenix.pyphoenix = sqlalchemy_phoenix.pyphoenix:PhoenixDialect_pyphoenix"]
},
license="MIT",
install_requires=['jaydebeapi','pyphoenix','sqlalchemy'],
)
if __name__ == '__main__':
setup(**setup_params)