Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
diff --git a/.gitignore b/.gitignore index bf01e38..8141428 100644 --- a/.gitignore +++ b/.gitignore @@ -148,3 +148,4 @@ supported_coin_list.backup logs/ .history/ custom_scripts.json +poetry.lock diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 0000000..6d18fa0 --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,24 @@ +[tool.poetry] +name = "telegram" +version = "0.1.0" +description = "" +authors = ["Ren Kasiyas <[email protected]>"] +readme = "README.md" + +[tool.poetry.dependencies] +python = "^3.9" +colorama = "0.4.4" +configparser = "5.2.0" +psutil = "5.9.0" +python-telegram-bot = "13.11" +pyyaml = "6.0" +requests = "2.27.1" +python-i18n = "0.3.9" +matplotlib = ">=3.4.2" +python-binance = ">=1.0.10" +numpy = ">=1.20.3" + + +[build-system] +requires = ["poetry-core"] +build-backend = "poetry.core.masonry.api" diff --git a/requirements.txt b/requirements.txt index 7dfa31c..2192317 100644 --- a/requirements.txt +++ b/requirements.txt @@ -5,6 +5,6 @@ python-telegram-bot==13.11 pyyaml==6.0 requests==2.27.1 python-i18n==0.3.9 -matplotlib >= 3.4.2 -python-binance >= 1.0.10 -numpy >= 1.20.3 +matplotlib>=3.4.2 +python-binance>=1.0.10 +numpy>=1.20.3
- Loading branch information