You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

46 lines
1.1 KiB

2 years ago
  1. # coding: utf-8
  2. """
  3. Seaweedfs Master Server API
  4. The Seaweedfs Master Server API allows you to store blobs # noqa: E501
  5. The version of the OpenAPI document: 3.43.0
  6. Generated by: https://openapi-generator.tech
  7. """
  8. from setuptools import setup, find_packages # noqa: H301
  9. # To install the library, run the following
  10. #
  11. # python setup.py install
  12. #
  13. # prerequisite: setuptools
  14. # http://pypi.python.org/pypi/setuptools
  15. NAME = "openapi-client"
  16. VERSION = "1.0.0"
  17. PYTHON_REQUIRES = ">=3.7"
  18. REQUIRES = [
  19. "urllib3 >= 1.25.3",
  20. "python-dateutil",
  21. "pydantic",
  22. "aenum"
  23. ]
  24. setup(
  25. name=NAME,
  26. version=VERSION,
  27. description="Seaweedfs Master Server API",
  28. author="OpenAPI Generator community",
  29. author_email="team@openapitools.org",
  30. url="",
  31. keywords=["OpenAPI", "OpenAPI-Generator", "Seaweedfs Master Server API"],
  32. install_requires=REQUIRES,
  33. packages=find_packages(exclude=["test", "tests"]),
  34. include_package_data=True,
  35. long_description_content_type='text/markdown',
  36. long_description="""\
  37. The Seaweedfs Master Server API allows you to store blobs # noqa: E501
  38. """
  39. )