Files
FastDeploy/tools/setup.py
yunyaoXYY ae3487560d [Quantization] Improve the usage of fastdeploy tools (#722)
Improve the usage of fastdeploy tools
2022-11-28 16:55:32 +08:00

22 lines
874 B
Python

import setuptools
long_description = "fastdeploy-tools is a toolkit for FastDeploy, including auto compression .etc.\n\n"
long_description += "Usage of auto compression: fastdeploy compress --config_path=./yolov7_tiny_qat_dis.yaml --method='QAT' --save_dir='./v7_qat_outmodel/' \n"
setuptools.setup(
name="fastdeploy-tools", # name of package
version="0.0.1", #version of package
description="A toolkit for FastDeploy.",
long_description=long_description,
long_description_content_type="text/plain",
packages=setuptools.find_packages(),
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
],
license='Apache 2.0',
entry_points={
'console_scripts': ['fastdeploy = common_tools.common_tools:main', ]
})