Skip to content

Commit

Permalink
build: version bump
Browse files Browse the repository at this point in the history
  • Loading branch information
crisog committed May 20, 2024
1 parent a82ba19 commit 41b1cef
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 10 deletions.
21 changes: 12 additions & 9 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ build-backend = "setuptools.build_meta"

[project]
name = "stateless-sdk"
version = "0.0.18" # Keep this in sync with __version__ in stateless/main.py
authors = [{name = "blockjoe", email = "[email protected]"}]
version = "0.0.19" # Keep this in sync with __version__ in stateless/main.py
authors = [{ name = "blockjoe", email = "[email protected]" }]
description = "A CLI for interacting with the Stateless Gateway"
readme = "readme.md"
dependencies = [
Expand All @@ -14,26 +14,29 @@ dependencies = [
"httpx~=0.24.1",
"rich~=13.6.0",
"ujson~=5.8.0",
"inquirer~=3.1.4"
"inquirer~=3.1.4",
]
requires-python = ">= 3.10"

[project.scripts]
stateless-cli = "stateless.main:_main"

[project.optional-dependencies]
dev = [
"black>=23.7.0",
"flake8",
"isort"
dev = ["black>=23.7.0", "flake8", "isort"]
testing = [
"pytest",
"pytest-asyncio",
"pytest-dotenv",
"pytest-httpx",
"pytest-cov",
"respx",
]
testing = ["pytest", "pytest-asyncio", "pytest-dotenv", "pytest-httpx", "pytest-cov", "respx"]

[tool.setuptools]
include-package-data = false

[tool.setuptools.packages]
find = {namespaces = false}
find = { namespaces = false }

[tool.black]
extend-exlcude = '^/alembic/versions/.*\.py'
2 changes: 1 addition & 1 deletion stateless/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
|_____/ \__\__,_|\__\___|_|\___||___/___/ \_____|______|_____|
""" # noqa: W291

__version__ = "0.0.18" # Keep this in sync with pyproject.toml
__version__ = "0.0.19" # Keep this in sync with pyproject.toml


def version_callback(value: bool):
Expand Down

0 comments on commit 41b1cef

Please sign in to comment.