Skip to content

Commit

Permalink
dependencies issue
Browse files Browse the repository at this point in the history
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
renkasiyas committed Oct 10, 2024
1 parent c023c27 commit f97eee0
Show file tree
Hide file tree
Showing 3 changed files with 28 additions and 3 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -148,3 +148,4 @@ supported_coin_list.backup
logs/
.history/
custom_scripts.json
poetry.lock
24 changes: 24 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -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"
6 changes: 3 additions & 3 deletions requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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

0 comments on commit f97eee0

Please sign in to comment.