-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
26 lines (22 loc) · 903 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
import io
from setuptools import setup, find_packages
__version__ = "0.0.2"
with open("requirements.txt", encoding="utf-8") as requirements_file:
requirements = [_.strip() for _ in requirements_file.readlines()]
setup(
name="streamxfer",
version=__version__,
description="StreamXfer is a powerful tool for streaming data from SQL Server to local or object storage(S3) for seamless transfer using UNIX pipe, supporting various general data formats(CSV, TSV, JSON).",
long_description=io.open("README.md", encoding="utf-8").read(),
long_description_content_type="text/markdown",
packages=find_packages(),
include_package_data=True,
install_requires=requirements,
python_requires=">=3.9",
entry_points={
"console_scripts": [
"stx = streamxfer.cli.main:cli",
"stx-escape = streamxfer.cli.mssql_escape:cli",
],
},
)