cloudFPGA (cF) API  1.0
The documentation of the source code of cloudFPGA (cF)
setup.py
Go to the documentation of this file.
1 # coding: utf-8
2 
3 """
4  cloudFPGA Resource Manager API
5 
6  No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) # noqa: E501
7 
8  OpenAPI spec version: 0.8
9 
10  Generated by: https://github.com/swagger-api/swagger-codegen.git
11 """
12 
13 from setuptools import setup, find_packages # noqa: H301
14 
15 NAME = "swagger-client"
16 VERSION = "1.0.0"
17 # To install the library, run the following
18 #
19 # python setup.py install
20 #
21 # prerequisite: setuptools
22 # http://pypi.python.org/pypi/setuptools
23 
24 REQUIRES = ["urllib3 >= 1.15", "six >= 1.10", "certifi", "python-dateutil"]
25 
26 setup(
27  name=NAME,
28  version=VERSION,
29  description="cloudFPGA Resource Manager API",
30  author_email="",
31  url="",
32  keywords=["Swagger", "cloudFPGA Resource Manager API"],
33  install_requires=REQUIRES,
34  packages=find_packages(),
35  include_package_data=True,
36  long_description="""\
37  No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) # noqa: E501
38  """
39 )
Definition: setup.py:1