add pyproject

This commit is contained in:
yuruo 2024-02-18 23:47:18 +08:00
parent 7868bfb9de
commit f972a76a1b
2 changed files with 20 additions and 0 deletions

1
.gitignore vendored
View File

@ -7,5 +7,6 @@
.venv
config.yaml
**.lock
# Ignore Python cache files
**/__pycache__/

19
pyproject.toml Normal file
View File

@ -0,0 +1,19 @@
[tool.poetry]
name = "automate"
version = "0.1.0"
description = ""
authors = ["yuruo"]
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.10"
PyYAML = "6.0.1"
requests = "2.31.0"
selenium = "4.16.0"
webdriver-manager = "4.0.1"
langchain = "0.1.7"
langchain-openai = "0.0.6"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"