import setuptools

with open("README.md", "r") as fh:
    long_description = fh.read()

setuptools.setup(
    name="locust_telc-yingchan", # Replace with your own username
    version="1.0.1",
    author="yingchan",
    author_email="3340604072@qq.com",
    description="locust增加对接口的描述，如造成侵权，联系删除",
    long_description=long_description,
    long_description_content_type="text/markdown",
    url="https://github.com/pypa/",
    packages=setuptools.find_packages(),
    classifiers=[
        "Programming Language :: Python :: 3",
        "License :: OSI Approved :: MIT License",
        "Operating System :: OS Independent",
    ],
    python_requires='>=3.8',
)

