-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpyproject.toml
More file actions
45 lines (41 loc) · 1.28 KB
/
pyproject.toml
File metadata and controls
45 lines (41 loc) · 1.28 KB
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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "autofic-core"
version = "0.1.0"
description = "A solution for remediating vulnerable source code using LLMs."
authors = [
{name = "autofic", email = "autofic.whs@gmail.com"}
]
readme = "README.md"
license = {file = "LICENSE"}
requires-python = ">=3.8"
dependencies = [
"click>=8.1.3,<9.0.0",
"requests>=2.28.1,<3.0.0",
"python-dotenv>=0.21.0,<1.0.0",
"rich>=13.3.1,<14.0.0",
"openai>=1.0.0,<2.0.0",
"pyfiglet>=1.0.3,<2.0.0"
]
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Topic :: Software Development :: Build Tools",
]
keywords = ["llm", "security", "autofix", "static analysis", "code remediation"]
[project.scripts]
autofic-core = "autofic_core.cli:main"
[tool.setuptools]
package-dir = {"" = "src"}
[tool.setuptools.packages.find]
where = ["src"]