-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
34 lines (31 loc) · 761 Bytes
/
Copy pathpyproject.toml
File metadata and controls
34 lines (31 loc) · 761 Bytes
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
[build-system]
requires = ["setuptools>=80.9.0"]
build-backend = "setuptools.build_meta"
[project]
name = "loopy"
version = "0.1.0"
description = "Loopy is a command-line tool for Software engineers."
readme = "README.md"
authors = [
{ name = "Muhannad Ashraf", email = "mhnnd.ashrf@gmail.com" }
]
license = { text = "MIT" }
requires-python = ">=3.8"
keywords = ["cli", "agent", "software", "engineers"]
dependencies = [
"rich>=13.9.4",
"openai>=1.99.9",
"python-dotenv>=1.0.1",
"ripgrep>=14.1.0",
"pathspec>=0.12.1",
"pyyaml>=6.0.3",
"diskcache>=5.6.3",
"requests>=2.31.0",
"beautifulsoup4>=4.12.0",
]
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools.package-dir]
"" = "src"
[project.scripts]
loopy = "loopy_main:main"