-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
1 parent
025e5bd
commit 054816e
Showing
10 changed files
with
556 additions
and
43 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
3.11 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,5 @@ | ||
from evdschat.core.chat import chat , chat_console | ||
from evdschat.core.chat import chat, chat_console | ||
|
||
__all__ = [ | ||
chat, chat_console | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,29 +1,30 @@ | ||
[tool.poetry] | ||
[project] | ||
name = "evdschat" | ||
version = "0.1.6" | ||
version = "0.1.7" | ||
description = "evdschat is an open-source Python package designed to enhance the evdspy package by allowing users to interact with the evdschat Application. This Node.js project aims to provide the most specific and accurate data users request during conversations, based on arguments such as start date, end date, and aggregation type, as described in the evdspy." | ||
authors = ["sermet.pekin <Sermet.Pekin@gmail.com>"] | ||
license = "CC BY-NC 4.0" | ||
authors = [ | ||
{ name = "Sermet Pekin", email = "Sermet.Pekin@gmail.com" } | ||
] | ||
license = { file = "LICENSE" } | ||
readme = "README.md" | ||
repository = "https://github.com/SermetPekin/evdschat" # Add this line | ||
keywords = ["evdspy", "evdschat", "chatbot", "data-aggregation", "open-source", "Node.js", "Python", "API", "TCMB", "CBRT", "Generative AI"] | ||
|
||
|
||
[tool.poetry.dependencies] | ||
python = "^3.9" | ||
evdspy = ">=1.1.40" | ||
rich = ">=13.7.1" | ||
requests = ">=2.32.3" | ||
python-dotenv = ">=1.0.1" | ||
requires-python = ">=3.10" | ||
dependencies = [ | ||
"evdspy>=1.1.40", | ||
"rich>=13.8.1", | ||
] | ||
[project.urls] | ||
repository = "https://github.com/SermetPekin/evdschat" | ||
|
||
[tool.poetry.group.dev.dependencies] | ||
pytest = "^8.3.2" | ||
ruff = "^0.5.6" | ||
tox = "^4.16.0" | ||
|
||
[tool.poetry.scripts] | ||
[scripts] | ||
evdschat = "evdschat:chat_console" | ||
|
||
[build-system] | ||
requires = ["poetry-core>=1.0.0", "setuptools>=42.0.0"] | ||
build-backend = "setuptools.build_meta" | ||
[tool.uv] | ||
dev-dependencies = [ | ||
"pytest>=8.3.3", | ||
"ruff>=0.6.4", | ||
"tox>=4.18.1", | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
[tool.poetry] | ||
name = "evdschat" | ||
version = "0.1.6" | ||
description = "evdschat is an open-source Python package designed to enhance the evdspy package by allowing users to interact with the evdschat Application. This Node.js project aims to provide the most specific and accurate data users request during conversations, based on arguments such as start date, end date, and aggregation type, as described in the evdspy." | ||
authors = ["sermet.pekin <Sermet.Pekin@gmail.com>"] | ||
license = "CC BY-NC 4.0" | ||
readme = "README.md" | ||
repository = "https://github.com/SermetPekin/evdschat" # Add this line | ||
keywords = ["evdspy", "evdschat", "chatbot", "data-aggregation", "open-source", "Node.js", "Python", "API", "TCMB", "CBRT", "Generative AI"] | ||
|
||
|
||
[tool.poetry.dependencies] | ||
python = "^3.9" | ||
evdspy = ">=1.1.40" | ||
rich = ">=13.7.1" | ||
requests = ">=2.32.3" | ||
python-dotenv = ">=1.0.1" | ||
|
||
[tool.poetry.group.dev.dependencies] | ||
pytest = "^8.3.2" | ||
ruff = "^0.5.6" | ||
tox = "^4.16.0" | ||
|
||
[tool.poetry.scripts] | ||
evdschat = "evdschat:chat_console" | ||
|
||
[build-system] | ||
requires = ["poetry-core>=1.0.0", "setuptools>=42.0.0"] | ||
build-backend = "setuptools.build_meta" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters