forked from daneshpatel/sqlalchemy-jdbcapi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
41 lines (37 loc) · 1.36 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
41
import os
from setuptools import setup, find_packages
readme = os.path.join(os.path.dirname(__file__), "README.rst")
DESCRIPTION = "Python SQLAlchemy Dialect for JDBCAPI."
with open("README.rst", "r") as fh:
long_description = fh.read()
setup(
name="sqlalchemy_jdbcapi",
version="1.2.2",
description=DESCRIPTION,
long_description=long_description,
long_description_content_type="text/x-rst",
author="Danesh Patel, Pavel Henrykhsen",
author_email="[email protected]",
license="Apache",
url="https://github.com/daneshpatel/sqlalchemy-jdbcapi",
classifiers=[
"Development Status :: 2 - Pre-Alpha",
"Intended Audience :: Developers",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: Implementation :: CPython",
"Topic :: Database :: Front-Ends",
"Operating System :: OS Independent",
],
packages=find_packages(include=["sqlalchemy_jdbcapi"]),
include_package_data=True,
install_requires=["SQLAlchemy", "JayDeBeApi"],
zip_safe=False,
keywords="SQLAlchemy JDBCAPI Dialect",
entry_points={
"sqlalchemy.dialects": [
"jdbcapi.pgjdbc = sqlalchemy_jdbcapi.pgjdbc:PGJDBCDialect",
"jdbcapi.oraclejdbc = sqlalchemy_jdbcapi.oraclejdbc:OracleJDBCDialect",
]
},
)