-
Notifications
You must be signed in to change notification settings - Fork 21
/
setup.py
30 lines (29 loc) · 1.09 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
from os import path
from setuptools import setup
setup(
name='sqlalchemy_teradata',
version='0.1.0',
description="Teradata dialect for SQLAlchemy",
classifiers=[
'Development Status :: 3 - Alpha',
'Environment :: Console',
'Intended Audience :: Developers',
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: Implementation :: CPython',
'Topic :: Database :: Front-Ends',
],
keywords='Teradata SQLAlchemy',
author='Mark Sandan',
author_email='[email protected]',
license='MIT',
packages=['sqlalchemy_teradata'],
include_package_data=True,
tests_require=['pytest >= 2.5.2'],
install_requires=['sqlalchemy', 'teradata'],
entry_points={
'sqlalchemy.dialects': [
'teradata = sqlalchemy_teradata.dialect:TeradataDialect',
]
}
)