github.com/filecoin-project/bacalhau@v0.3.23-0.20230228154132-45c989550ace/clients/python/setup.py (about)

     1  # coding: utf-8
     2  
     3  """
     4      Bacalhau API
     5  
     6      This page is the reference of the Bacalhau REST API. Project docs are available at https://docs.bacalhau.org/. Find more information about Bacalhau at https://github.com/filecoin-project/bacalhau.  # noqa: E501
     7  
     8      OpenAPI spec version: 0.3.22.post4
     9      Contact: team@bacalhau.org
    10      Generated by: https://github.com/swagger-api/swagger-codegen.git
    11  """
    12  
    13  
    14  from setuptools import setup, find_packages  # noqa: H301
    15  
    16  NAME = "bacalhau_apiclient"
    17  VERSION = "0.3.22.post4"
    18  # To install the library, run the following
    19  #
    20  # python setup.py install
    21  #
    22  # prerequisite: setuptools
    23  # http://pypi.python.org/pypi/setuptools
    24  
    25  REQUIRES = [
    26      "certifi>=2017.4.17",
    27      "python-dateutil>=2.1",
    28      "six>=1.10",
    29      "urllib3>=1.23"
    30  ]
    31      
    32  
    33  setup(
    34      name=NAME,
    35      version=VERSION,
    36      description="Bacalhau API",
    37      author_email="team@bacalhau.org",
    38      url="https://github.com/filecoin-project/bacalhau/",
    39      keywords=["Swagger", "Bacalhau API"],
    40      install_requires=REQUIRES,
    41      packages=find_packages(),
    42      include_package_data=True,
    43      long_description="""\
    44      This page is the reference of the Bacalhau REST API. Project docs are available at https://docs.bacalhau.org/. Find more information about Bacalhau at https://github.com/filecoin-project/bacalhau.  # noqa: E501
    45      """
    46  )