forked from sqlalchemy-cubrid/sqlalchemy-cubrid
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
32 lines (31 loc) · 974 Bytes
/
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
from setuptools import setup
setup(
name="sqlalchemy_cubrid",
version="0.0.1",
description="Cubrid dialect for SQLAlchemy",
classifiers=[
"Development Status :: 3 - Alpha",
"Environment :: Console",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Programming Language :: Python :: 3.7",
],
keywords="SQLAlchemy Cubrid",
author="Yeongseon Choe, Gyeongjun Paik",
author_email="[email protected], [email protected]",
license="MIT",
packages=["sqlalchemy_cubrid"],
include_package_data=True,
tests_require=["pytest >= 2.5.2"],
install_requires=[
"sqlalchemy",
"CUBRID-Python",
],
entry_points={
"sqlalchemy.dialects": [
"cubrid = sqlalchemy_cubrid.dialect:CubridDialect",
"cubrid.cubrid = sqlalchemy_cubrid.dialect:CubridDialect",
]
},
)