This commit is contained in:
2024-10-08 13:00:15 +03:00
commit d737a62f48
5 changed files with 27 additions and 0 deletions

13
.gitignore vendored Normal file
View File

@ -0,0 +1,13 @@
.env
.env.db
.venv
.idea
.ruff_cache
.pytest_cache
venv
data
logs
__pycache__
.DS_Store
*.txt

0
README.md Normal file
View File

0
basethon/__init__.py Normal file
View File

14
pyproject.toml Normal file
View File

@ -0,0 +1,14 @@
[tool.poetry]
name = "basethon"
version = "0.1.0"
description = ""
authors = ["trojvn <mrx.trojan@gmail.com>"]
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.12"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"

0
tests/__init__.py Normal file
View File