diff --git a/pyproject.toml b/pyproject.toml index d0c4e24..87aadc7 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,19 +4,10 @@ build-backend = "setuptools.build_meta" [project] name = "integrationos" -version = "0.1.1" +version = "0.1.2" description = "A Python SDK for IntegrationOS" readme = "README.md" requires-python = ">=3.7" - -[tool.setuptools.packages.find] -where = ["src"] -include = ["integrationos*"] -namespaces = false - -[tool.setuptools.package-data] -integrationos = ["py.typed"] - dependencies = [ "httpx", "pydantic", @@ -25,3 +16,11 @@ dependencies = [ "jinja2", "requests", ] + +[tool.setuptools.packages.find] +where = ["src"] +include = ["integrationos*"] +namespaces = false + +[tool.setuptools.package-data] +integrationos = ["py.typed"] diff --git a/src/integrationos.egg-info/PKG-INFO b/src/integrationos.egg-info/PKG-INFO index 985036d..104d3c8 100644 --- a/src/integrationos.egg-info/PKG-INFO +++ b/src/integrationos.egg-info/PKG-INFO @@ -1,6 +1,6 @@ Metadata-Version: 2.1 Name: integrationos -Version: 0.1.1 +Version: 0.1.2 Summary: A Python SDK for IntegrationOS Requires-Python: >=3.7 Description-Content-Type: text/markdown diff --git a/src/integrationos/__init__.py b/src/integrationos/__init__.py index 2f4a291..03d3d12 100644 --- a/src/integrationos/__init__.py +++ b/src/integrationos/__init__.py @@ -3,4 +3,4 @@ from .types.models import * __all__ = ['IntegrationOS'] -__version__ = "0.1.1" \ No newline at end of file +__version__ = "0.1.2" \ No newline at end of file