Skip to content

Commit

Permalink
Add changes
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] committed Jan 24, 2024
1 parent 05316b2 commit e9a2122
Show file tree
Hide file tree
Showing 8 changed files with 72 additions and 32 deletions.
13 changes: 9 additions & 4 deletions pnap_audit_api/setup.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
# coding: utf-8

"""
Audit Log API
Expand All @@ -14,17 +16,20 @@
from pnap_audit_api.version import VERSION
from setuptools import setup, find_packages # noqa: H301

NAME = "pnap-audit-api"
# To install the library, run the following
#
# python setup.py install
#
# prerequisite: setuptools
# http://pypi.python.org/pypi/setuptools

NAME = "pnap-audit-api"
VERSION = "1.0.0"
PYTHON_REQUIRES = ">=3.7"
REQUIRES = [
"urllib3 >= 1.25.3",
"python-dateutil",
"urllib3 >= 1.25.3, < 2.1.0",
"python-dateutil",
"pydantic >= 2",
"typing-extensions >= 4.7.1",
]

def readme():
Expand Down
13 changes: 9 additions & 4 deletions pnap_bmc_api/setup.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
# coding: utf-8

"""
Bare Metal Cloud API
Expand All @@ -14,17 +16,20 @@
from pnap_bmc_api.version import VERSION
from setuptools import setup, find_packages # noqa: H301

NAME = "pnap-bmc-api"
# To install the library, run the following
#
# python setup.py install
#
# prerequisite: setuptools
# http://pypi.python.org/pypi/setuptools

NAME = "pnap-bmc-api"
VERSION = "1.0.0"
PYTHON_REQUIRES = ">=3.7"
REQUIRES = [
"urllib3 >= 1.25.3",
"python-dateutil",
"urllib3 >= 1.25.3, < 2.1.0",
"python-dateutil",
"pydantic >= 2",
"typing-extensions >= 4.7.1",
]

def readme():
Expand Down
13 changes: 9 additions & 4 deletions pnap_ip_api/setup.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
# coding: utf-8

"""
IP Addresses API
Expand All @@ -14,17 +16,20 @@
from pnap_ip_api.version import VERSION
from setuptools import setup, find_packages # noqa: H301

NAME = "pnap-ip-api"
# To install the library, run the following
#
# python setup.py install
#
# prerequisite: setuptools
# http://pypi.python.org/pypi/setuptools

NAME = "pnap-ip-api"
VERSION = "1.0.0"
PYTHON_REQUIRES = ">=3.7"
REQUIRES = [
"urllib3 >= 1.25.3",
"python-dateutil",
"urllib3 >= 1.25.3, < 2.1.0",
"python-dateutil",
"pydantic >= 2",
"typing-extensions >= 4.7.1",
]

def readme():
Expand Down
13 changes: 9 additions & 4 deletions pnap_location_api/setup.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
# coding: utf-8

"""
Locations API
Expand All @@ -14,17 +16,20 @@
from pnap_location_api.version import VERSION
from setuptools import setup, find_packages # noqa: H301

NAME = "pnap-location-api"
# To install the library, run the following
#
# python setup.py install
#
# prerequisite: setuptools
# http://pypi.python.org/pypi/setuptools

NAME = "pnap-location-api"
VERSION = "1.0.0"
PYTHON_REQUIRES = ">=3.7"
REQUIRES = [
"urllib3 >= 1.25.3",
"python-dateutil",
"urllib3 >= 1.25.3, < 2.1.0",
"python-dateutil",
"pydantic >= 2",
"typing-extensions >= 4.7.1",
]

def readme():
Expand Down
13 changes: 9 additions & 4 deletions pnap_network_api/setup.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
# coding: utf-8

"""
Networks API
Expand All @@ -14,17 +16,20 @@
from pnap_network_api.version import VERSION
from setuptools import setup, find_packages # noqa: H301

NAME = "pnap-network-api"
# To install the library, run the following
#
# python setup.py install
#
# prerequisite: setuptools
# http://pypi.python.org/pypi/setuptools

NAME = "pnap-network-api"
VERSION = "1.0.0"
PYTHON_REQUIRES = ">=3.7"
REQUIRES = [
"urllib3 >= 1.25.3",
"python-dateutil",
"urllib3 >= 1.25.3, < 2.1.0",
"python-dateutil",
"pydantic >= 2",
"typing-extensions >= 4.7.1",
]

def readme():
Expand Down
13 changes: 9 additions & 4 deletions pnap_network_storage_api/setup.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
# coding: utf-8

"""
Network Storage API
Expand All @@ -14,17 +16,20 @@
from pnap_network_storage_api.version import VERSION
from setuptools import setup, find_packages # noqa: H301

NAME = "pnap-network-storage-api"
# To install the library, run the following
#
# python setup.py install
#
# prerequisite: setuptools
# http://pypi.python.org/pypi/setuptools

NAME = "pnap-network-storage-api"
VERSION = "1.0.0"
PYTHON_REQUIRES = ">=3.7"
REQUIRES = [
"urllib3 >= 1.25.3",
"python-dateutil",
"urllib3 >= 1.25.3, < 2.1.0",
"python-dateutil",
"pydantic >= 2",
"typing-extensions >= 4.7.1",
]

def readme():
Expand Down
13 changes: 9 additions & 4 deletions pnap_rancher_solution_api/setup.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
# coding: utf-8

"""
Rancher Solution API
Expand All @@ -14,17 +16,20 @@
from pnap_rancher_solution_api.version import VERSION
from setuptools import setup, find_packages # noqa: H301

NAME = "pnap-rancher-solution-api"
# To install the library, run the following
#
# python setup.py install
#
# prerequisite: setuptools
# http://pypi.python.org/pypi/setuptools

NAME = "pnap-rancher-solution-api"
VERSION = "1.0.0"
PYTHON_REQUIRES = ">=3.7"
REQUIRES = [
"urllib3 >= 1.25.3",
"python-dateutil",
"urllib3 >= 1.25.3, < 2.1.0",
"python-dateutil",
"pydantic >= 2",
"typing-extensions >= 4.7.1",
]

def readme():
Expand Down
13 changes: 9 additions & 4 deletions pnap_tag_api/setup.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
# coding: utf-8

"""
Tags API
Expand All @@ -14,17 +16,20 @@
from pnap_tag_api.version import VERSION
from setuptools import setup, find_packages # noqa: H301

NAME = "pnap-tag-api"
# To install the library, run the following
#
# python setup.py install
#
# prerequisite: setuptools
# http://pypi.python.org/pypi/setuptools

NAME = "pnap-tag-api"
VERSION = "1.0.0"
PYTHON_REQUIRES = ">=3.7"
REQUIRES = [
"urllib3 >= 1.25.3",
"python-dateutil",
"urllib3 >= 1.25.3, < 2.1.0",
"python-dateutil",
"pydantic >= 2",
"typing-extensions >= 4.7.1",
]

def readme():
Expand Down

0 comments on commit e9a2122

Please sign in to comment.