Skip to content

Commit ded1d08

Browse files
feat/bump-version (#9)
1 parent bc6b6fd commit ded1d08

File tree

1 file changed

+11
-16
lines changed

1 file changed

+11
-16
lines changed

pyproject.toml

Lines changed: 11 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,12 @@
11
[project]
22
name = "edgee"
3-
version = "1.0.0"
3+
version = "1.0.1"
44
description = "Lightweight Python SDK for Edgee AI Gateway"
55
readme = "README.md"
66
license = "Apache-2.0"
77
requires-python = ">=3.10"
88
dependencies = []
9-
authors = [
10-
{ name = "Edgee", email = "support@edgee.ai" }
11-
]
9+
authors = [{ name = "Edgee", email = "support@edgee.ai" }]
1210
keywords = ["ai", "llm", "gateway", "openai", "anthropic"]
1311
classifiers = [
1412
"Development Status :: 4 - Beta",
@@ -41,24 +39,21 @@ line-length = 100
4139

4240
[tool.ruff.lint]
4341
select = [
44-
"E", # pycodestyle errors
45-
"W", # pycodestyle warnings
46-
"F", # pyflakes
47-
"I", # isort
48-
"B", # flake8-bugbear
49-
"C4", # flake8-comprehensions
50-
"UP", # pyupgrade
42+
"E", # pycodestyle errors
43+
"W", # pycodestyle warnings
44+
"F", # pyflakes
45+
"I", # isort
46+
"B", # flake8-bugbear
47+
"C4", # flake8-comprehensions
48+
"UP", # pyupgrade
5149
]
5250
ignore = [
53-
"E501", # line too long (handled by formatter)
51+
"E501", # line too long (handled by formatter)
5452
]
5553

5654
[tool.ruff.format]
5755
quote-style = "double"
5856
indent-style = "space"
5957

6058
[dependency-groups]
61-
dev = [
62-
"pytest>=8.0.0",
63-
"ruff>=0.8.0",
64-
]
59+
dev = ["pytest>=8.0.0", "ruff>=0.8.0"]

0 commit comments

Comments
 (0)