forked from gordthompson/sqlalchemy-sybase
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
53 lines (48 loc) · 1.8 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
42
43
44
45
46
47
48
49
50
51
52
53
import os
import re
from setuptools import setup, find_packages
v = open(
os.path.join(os.path.dirname(__file__), "sqlalchemy_sybase", "__init__.py")
)
VERSION = re.compile(r'.*__version__ = "(.*?)"', re.S).match(v.read()).group(1)
v.close()
readme = os.path.join(os.path.dirname(__file__), "README.rst")
setup(
name="sqlalchemy-sybase",
version=VERSION,
description="SAP ASE (Sybase) for SQLAlchemy",
long_description=open(readme).read(),
url="https://github.com/gordthompson/sqlalchemy-sybase",
author="Gord Thompson",
author_email="[email protected]",
license="MIT",
classifiers=[
# 'Development Status :: 1 - Planning',
# "Development Status :: 2 - Pre-Alpha",
# 'Development Status :: 3 - Alpha',
# 'Development Status :: 4 - Beta',
'Development Status :: 5 - Production/Stable',
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: Implementation :: CPython",
"Topic :: Database :: Front-Ends",
"Operating System :: OS Independent",
],
keywords="ASE SAP SQLAlchemy Sybase",
project_urls={
"Documentation": "https://github.com/gordthompson/sqlalchemy-sybase/wiki",
"Source": "https://github.com/gordthompson/sqlalchemy-sybase",
"Tracker": "https://github.com/gordthompson/sqlalchemy-sybase/issues",
},
packages=find_packages(include=["sqlalchemy_sybase"]),
include_package_data=True,
install_requires=["odbcinst", "pyodbc", "SQLAlchemy>1.3.16"],
zip_safe=False,
entry_points={
"sqlalchemy.dialects": [
"sybase.pyodbc = sqlalchemy_sybase.pyodbc:SybaseDialect_pyodbc",
]
},
)