Browse Source

fix: poetry pyproject.toml

pull/1486/head
Konstantin Ponomarev 1 week ago
parent
commit
fc2d6fae87
  1. 32
      pyproject.toml

32
pyproject.toml

@ -1,34 +1,16 @@
[project]
name = "fastsio"
version = "0.0.1"
description = "light and typization Socket.IO server and client for Python"
license = "MIT"
readme = "README.md"
homepage = "https://github.com/cicwak/fastsio"
repository = "https://github.com/cicwak/fastsio"
packages = [
{ include = "fastsio", from = "src" },
]
authors = [
"Miguel Grinberg <miguel.grinberg@gmail.com>",
"Konstantin Ponomarev <cicwak@gmail.com>",
]
[tool.poetry] [tool.poetry]
name = "fastsio" name = "fastsio"
version = "0.0.1" version = "0.0.1" # будет перезаписываться GitHub Actions по тегу
description = "light and typization Socket.IO server and client for Python" description = "light and typization Socket.IO server and client for Python"
license = "MIT" license = "MIT"
readme = "README.md" readme = "README.md"
homepage = "https://github.com/cicwak/fastsio" homepage = "https://github.com/cicwak/fastsio"
repository = "https://github.com/cicwak/fastsio" repository = "https://github.com/cicwak/fastsio"
packages = [
{ include = "fastsio", from = "src" },
]
authors = [ authors = [
"Miguel Grinberg <miguel.grinberg@gmail.com>", "Miguel Grinberg <miguel.grinberg@gmail.com>",
"Konstantin Ponomarev <cicwak@gmail.com>", "Konstantin Ponomarev <cicwak@gmail.com>",
] ]
packages = [{ include = "fastsio", from = "src" }]
[project.readme] [project.readme]
file = "README.md" file = "README.md"
@ -78,8 +60,8 @@ where = [
namespaces = false namespaces = false
[build-system] [build-system]
requires = ["setuptools >= 77.0.3"] requires = ["poetry-core>=1.8.0"]
build-backend = "setuptools.build_meta" build-backend = "poetry.core.masonry.api"
[tool.pytest.ini_options] [tool.pytest.ini_options]
asyncio_mode = "auto" asyncio_mode = "auto"
@ -114,7 +96,7 @@ ignore = ["D203", "D213"]
convention = "google" convention = "google"
[tool.ruff.lint.isort] [tool.ruff.lint.isort]
known-first-party = ["fast_socketio"] known-first-party = ["fastsio"]
combine-as-imports = true combine-as-imports = true
[tool.ruff.lint.flake8-tidy-imports] [tool.ruff.lint.flake8-tidy-imports]

Loading…
Cancel
Save