-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
48 lines (42 loc) · 1.01 KB
/
pyproject.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
[project]
name = "internetexplorer"
version = "0.1.0"
description = "Add your description here"
authors = [
{ name = "2mal3", email = "[email protected]" }
]
dependencies = [
"selenium==4.*",
"chromedriver==2.*",
"webdriver-manager==4.*",
"openai==1.*",
"python-dotenv==1.*",
"python-socketio==5.*",
"flask==3.*",
"bs4>=0.0.2",
"speechrecognition>=3.10.4",
"websockets>=13.0.1",
"pydub>=0.25.1",
"pyaudio>=0.2.14",
"pynput>=1.7.7",
"pydantic>=2.9.2",
]
readme = "README.md"
requires-python = ">= 3.8"
[tool.ruff]
target-version = "py311"
line-length = 120
[tool.ruff.lint]
# Rules are explained here: https://docs.astral.sh/ruff/rules
select = ["E4", "E7", "E9", "F", "C", "N", "A", "SIM", "PL"]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.rye]
managed = true
virtual = true
dev-dependencies = []
[tool.hatch.metadata]
allow-direct-references = true
[tool.hatch.build.targets.wheel]
packages = ["internetexplorer"]