Skip to content

Commit

Permalink
fix: pyproject.toml
Browse files Browse the repository at this point in the history
  • Loading branch information
paulkr committed Oct 31, 2024
1 parent 5fc2058 commit e70451e
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 12 deletions.
19 changes: 9 additions & 10 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand All @@ -25,3 +16,11 @@ dependencies = [
"jinja2",
"requests",
]

[tool.setuptools.packages.find]
where = ["src"]
include = ["integrationos*"]
namespaces = false

[tool.setuptools.package-data]
integrationos = ["py.typed"]
2 changes: 1 addition & 1 deletion src/integrationos.egg-info/PKG-INFO
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion src/integrationos/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@
from .types.models import *

__all__ = ['IntegrationOS']
__version__ = "0.1.1"
__version__ = "0.1.2"

0 comments on commit e70451e

Please sign in to comment.