1 changed files with 7 additions and 25 deletions
@ -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 <[email protected]>", |
|
||||
"Konstantin Ponomarev <[email protected]>", |
|
||||
] |
|
||||
|
|
||||
[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 <[email protected]>", |
"Miguel Grinberg <[email protected]>", |
||||
"Konstantin Ponomarev <[email protected]>", |
"Konstantin Ponomarev <[email protected]>", |
||||
] |
] |
||||
|
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…
Reference in new issue