forked from denisenkom/pytds
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
29 lines (26 loc) · 994 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
import os
import setuptools
from setuptools import setup
import version
requirements = list(open(os.path.join(os.path.dirname(__file__), 'requirements.txt'), 'r').readlines())
print(setuptools.find_packages('src'))
setup(name='python-tds',
version=version.get_git_version(),
description='Python DBAPI driver for MSSQL using pure Python TDS (Tabular Data Stream) protocol implementation',
author='Mikhail Denisenko',
author_email='denisenkom@gmail.com',
url='https://github.com/denisenkom/pytds',
license="MIT",
packages=['pytds'],
package_dir={'': 'src'},
classifiers=[
'Development Status :: 4 - Beta',
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
],
zip_safe=True,
install_requires=requirements,
)