mirror of https://gitee.com/anolis/sysom.git
19 lines
464 B
Python
19 lines
464 B
Python
import setuptools
|
|
|
|
setuptools.setup(
|
|
name="gclient_http",
|
|
version="0.0.1",
|
|
author="mingfeng(SunnyQjm)",
|
|
author_email="mfeng@linux.alibaba.com",
|
|
description="A requests-based http client lib",
|
|
url="",
|
|
packages=setuptools.find_packages(),
|
|
install_requires=[
|
|
],
|
|
classifiers=[
|
|
"Programming Language :: Python :: 3",
|
|
"License :: OSI Approved :: MIT License",
|
|
"Operating System :: OS Independent",
|
|
]
|
|
)
|