diff --git a/.gitignore b/.gitignore index bee8a64..e9b6cb5 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1,3 @@ __pycache__ + +dist diff --git a/README.md b/README.md new file mode 100644 index 0000000..4bba30b --- /dev/null +++ b/README.md @@ -0,0 +1,5 @@ +# Helpers + +## Описание + +## Ссылки diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 0000000..a8c2767 --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,31 @@ +[project] +name = "helpers" +version = "0.1" +authors = [ + { name="RemiZOffAlex", email="remizoffalex@gmail.com" }, +] +maintainers = [ + { name="RemiZOffAlex", email="remizoffalex@gmail.com" }, +] +description = "" +readme = "README.md" +requires-python = ">=3.10" +classifiers = [ + "Operating System :: OS Independent", + "Programming Language :: Python", + "Programming Language :: Python :: 3", + "Programming Language :: Python :: 3.10", + "Programming Language :: Python :: 3.11", + "Programming Language :: Python :: 3.12", + "Programming Language :: Python :: 3.13", + "Programming Language :: Python :: 3.14" +] +keywords = ["mediator"] + +[build-system] +requires = ["flit_core >=3.2,<4"] +build-backend = "flit_core.buildapi" + +[tool.flit.sdist] +include = [] +exclude = []