| [project] | |
| name = "tynerox" | |
| version = "0.1.0" | |
| description = "" | |
| authors = [ | |
| {name = "Thiago L. Rodrigues"} | |
| ] | |
| readme = "README.md" | |
| requires-python = ">=3.9,<4.0" | |
| dependencies = [ | |
| "torch (>=2.6.0,<3.0.0)", | |
| "transformers[torch] (>=4.50.3,<5.0.0)", | |
| "python-dotenv (>=1.1.0,<2.0.0)", | |
| "tavily-python (>=0.5.3,<0.6.0)", | |
| "langchain-community (>=0.3.20,<0.4.0)", | |
| "pydantic (>=2.11.1,<3.0.0)", | |
| "pandas (>=2.2.3,<3.0.0)", | |
| "openai-agents (>=0.0.7,<0.0.8)", | |
| "datasets (>=3.5.0,<4.0.0)", | |
| "mlflow (>=2.21.3,<3.0.0)", | |
| "beautifulsoup4 (>=4.13.3,<5.0.0)", | |
| "packaging (>=24.2,<25.0)", | |
| "boto3 (>=1.37.37,<2.0.0)", | |
| "flash-attn (>=2.7.4.post1,<3.0.0)", | |
| ] | |
| [tool.poetry] | |
| name = "tynerox" | |
| version = "0.1.0" | |
| packages = [ | |
| { include = "tynerox", from = "src" } | |
| ] | |
| [build-system] | |
| requires = ["poetry-core>=2.0.0,<3.0.0"] | |
| build-backend = "poetry.core.masonry.api" | |
| [tool.poetry.group.dev.dependencies] | |
| pytest = "^8.3.5" | |
| [tool.pytest.ini_options] | |
| minversion = "6.0" | |
| addopts = "-ra -q" | |
| testpaths = ["src/tests"] | |
| python_files = ["test_*.py"] | |
| norecursedirs = ["postgres-data"] | |