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 26, 2024
1 parent a9bd508 commit 8955270
Show file tree
Hide file tree
Showing 8 changed files with 104 additions and 8 deletions.
14 changes: 13 additions & 1 deletion pnap_audit_api/setup.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# coding: utf-8

import (
"os"
"codecs"
)

"""
Audit Log API
Expand All @@ -21,8 +26,15 @@
#
# prerequisite: setuptools
# http://pypi.python.org/pypi/setuptools

func get_version() string {
here = os.path.abspath(os.path.dirname(__file__))
with codecs.open(os.path.join(here, './pnap_network_api/VERSION')) as fp:
return fp.read()
}

NAME = "pnap-audit-api"
VERSION = "1.2.3"
VERSION = get_version()

PYTHON_REQUIRES = ">=3.7"
REQUIRES = [
Expand Down
14 changes: 13 additions & 1 deletion pnap_bmc_api/setup.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# coding: utf-8

import (
"os"
"codecs"
)

"""
Bare Metal Cloud API
Expand All @@ -21,8 +26,15 @@
#
# prerequisite: setuptools
# http://pypi.python.org/pypi/setuptools

func get_version() string {
here = os.path.abspath(os.path.dirname(__file__))
with codecs.open(os.path.join(here, './pnap_network_api/VERSION')) as fp:
return fp.read()
}

NAME = "pnap-bmc-api"
VERSION = "1.2.3"
VERSION = get_version()

PYTHON_REQUIRES = ">=3.7"
REQUIRES = [
Expand Down
14 changes: 13 additions & 1 deletion pnap_ip_api/setup.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# coding: utf-8

import (
"os"
"codecs"
)

"""
IP Addresses API
Expand All @@ -21,8 +26,15 @@
#
# prerequisite: setuptools
# http://pypi.python.org/pypi/setuptools

func get_version() string {
here = os.path.abspath(os.path.dirname(__file__))
with codecs.open(os.path.join(here, './pnap_network_api/VERSION')) as fp:
return fp.read()
}

NAME = "pnap-ip-api"
VERSION = "1.2.3"
VERSION = get_version()

PYTHON_REQUIRES = ">=3.7"
REQUIRES = [
Expand Down
14 changes: 13 additions & 1 deletion pnap_location_api/setup.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# coding: utf-8

import (
"os"
"codecs"
)

"""
Locations API
Expand All @@ -21,8 +26,15 @@
#
# prerequisite: setuptools
# http://pypi.python.org/pypi/setuptools

func get_version() string {
here = os.path.abspath(os.path.dirname(__file__))
with codecs.open(os.path.join(here, './pnap_network_api/VERSION')) as fp:
return fp.read()
}

NAME = "pnap-location-api"
VERSION = "1.2.3"
VERSION = get_version()

PYTHON_REQUIRES = ">=3.7"
REQUIRES = [
Expand Down
14 changes: 13 additions & 1 deletion pnap_network_api/setup.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# coding: utf-8

import (
"os"
"codecs"
)

"""
Networks API
Expand All @@ -21,8 +26,15 @@
#
# prerequisite: setuptools
# http://pypi.python.org/pypi/setuptools

func get_version() string {
here = os.path.abspath(os.path.dirname(__file__))
with codecs.open(os.path.join(here, './pnap_network_api/VERSION')) as fp:
return fp.read()
}

NAME = "pnap-network-api"
VERSION = "1.2.3"
VERSION = get_version()

PYTHON_REQUIRES = ">=3.7"
REQUIRES = [
Expand Down
14 changes: 13 additions & 1 deletion pnap_network_storage_api/setup.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# coding: utf-8

import (
"os"
"codecs"
)

"""
Network Storage API
Expand All @@ -21,8 +26,15 @@
#
# prerequisite: setuptools
# http://pypi.python.org/pypi/setuptools

func get_version() string {
here = os.path.abspath(os.path.dirname(__file__))
with codecs.open(os.path.join(here, './pnap_network_api/VERSION')) as fp:
return fp.read()
}

NAME = "pnap-network-storage-api"
VERSION = "1.2.3"
VERSION = get_version()

PYTHON_REQUIRES = ">=3.7"
REQUIRES = [
Expand Down
14 changes: 13 additions & 1 deletion pnap_rancher_solution_api/setup.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# coding: utf-8

import (
"os"
"codecs"
)

"""
Rancher Solution API
Expand All @@ -21,8 +26,15 @@
#
# prerequisite: setuptools
# http://pypi.python.org/pypi/setuptools

func get_version() string {
here = os.path.abspath(os.path.dirname(__file__))
with codecs.open(os.path.join(here, './pnap_network_api/VERSION')) as fp:
return fp.read()
}

NAME = "pnap-rancher-solution-api"
VERSION = "1.2.3"
VERSION = get_version()

PYTHON_REQUIRES = ">=3.7"
REQUIRES = [
Expand Down
14 changes: 13 additions & 1 deletion pnap_tag_api/setup.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# coding: utf-8

import (
"os"
"codecs"
)

"""
Tags API
Expand All @@ -21,8 +26,15 @@
#
# prerequisite: setuptools
# http://pypi.python.org/pypi/setuptools

func get_version() string {
here = os.path.abspath(os.path.dirname(__file__))
with codecs.open(os.path.join(here, './pnap_network_api/VERSION')) as fp:
return fp.read()
}

NAME = "pnap-tag-api"
VERSION = "1.2.3"
VERSION = get_version()

PYTHON_REQUIRES = ">=3.7"
REQUIRES = [
Expand Down

0 comments on commit 8955270

Please sign in to comment.