diff --git a/pnap_audit_api/setup.py b/pnap_audit_api/setup.py index a1810d71..ab07dce3 100644 --- a/pnap_audit_api/setup.py +++ b/pnap_audit_api/setup.py @@ -1,3 +1,5 @@ +# coding: utf-8 + """ Audit Log API @@ -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(): diff --git a/pnap_bmc_api/setup.py b/pnap_bmc_api/setup.py index 2496d4fb..2fcbef26 100644 --- a/pnap_bmc_api/setup.py +++ b/pnap_bmc_api/setup.py @@ -1,3 +1,5 @@ +# coding: utf-8 + """ Bare Metal Cloud API @@ -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(): diff --git a/pnap_ip_api/setup.py b/pnap_ip_api/setup.py index 3105c12d..5150198e 100644 --- a/pnap_ip_api/setup.py +++ b/pnap_ip_api/setup.py @@ -1,3 +1,5 @@ +# coding: utf-8 + """ IP Addresses API @@ -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(): diff --git a/pnap_location_api/setup.py b/pnap_location_api/setup.py index 054a8e51..b7c78b6a 100644 --- a/pnap_location_api/setup.py +++ b/pnap_location_api/setup.py @@ -1,3 +1,5 @@ +# coding: utf-8 + """ Locations API @@ -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(): diff --git a/pnap_network_api/setup.py b/pnap_network_api/setup.py index 3bb14e76..9ea48283 100644 --- a/pnap_network_api/setup.py +++ b/pnap_network_api/setup.py @@ -1,3 +1,5 @@ +# coding: utf-8 + """ Networks API @@ -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(): diff --git a/pnap_network_storage_api/setup.py b/pnap_network_storage_api/setup.py index 2760b34f..0d4cf8dc 100644 --- a/pnap_network_storage_api/setup.py +++ b/pnap_network_storage_api/setup.py @@ -1,3 +1,5 @@ +# coding: utf-8 + """ Network Storage API @@ -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(): diff --git a/pnap_rancher_solution_api/setup.py b/pnap_rancher_solution_api/setup.py index 67878ee1..be2da70b 100644 --- a/pnap_rancher_solution_api/setup.py +++ b/pnap_rancher_solution_api/setup.py @@ -1,3 +1,5 @@ +# coding: utf-8 + """ Rancher Solution API @@ -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(): diff --git a/pnap_tag_api/setup.py b/pnap_tag_api/setup.py index dad49576..06895989 100644 --- a/pnap_tag_api/setup.py +++ b/pnap_tag_api/setup.py @@ -1,3 +1,5 @@ +# coding: utf-8 + """ Tags API @@ -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():