Skip to content

Commit

Permalink
chore: add optional dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
paulkr committed Oct 31, 2024
1 parent e70451e commit ba9ad13
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
6 changes: 5 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"

[project]
name = "integrationos"
version = "0.1.2"
version = "0.1.3"
description = "A Python SDK for IntegrationOS"
readme = "README.md"
requires-python = ">=3.7"
Expand All @@ -15,8 +15,12 @@ dependencies = [
"case-converter",
"jinja2",
"requests",
"email-validator",
]

[project.optional-dependencies]
test = ["pytest>=7.0.0,<8.0.0"]

[tool.setuptools.packages.find]
where = ["src"]
include = ["integrationos*"]
Expand Down
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.2
Version: 0.1.3
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.2"
__version__ = "0.1.3"

0 comments on commit ba9ad13

Please sign in to comment.