-
Notifications
You must be signed in to change notification settings - Fork 52
/
setup.py
33 lines (30 loc) · 1015 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
33
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="[email protected]",
url="https://github.com/denisenkom/pytds",
license="MIT",
packages=["pytds"],
package_dir={"": "src"},
classifiers=[
"Development Status :: 4 - Beta",
"Programming Language :: Python",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
],
zip_safe=True,
install_requires=requirements,
)