-
-
Notifications
You must be signed in to change notification settings - Fork 62
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
13 additions
and
34 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,12 +4,10 @@ build-backend = "setuptools.build_meta" | |
|
||
[project] | ||
name = "hackingBuddyGPT" | ||
authors = [ | ||
{ name = "Andreas Happe", email = "[email protected]" } | ||
] | ||
authors = [{ name = "Andreas Happe", email = "[email protected]" }] | ||
maintainers = [ | ||
{ name = "Andreas Happe", email = "[email protected]" }, | ||
{ name = "Juergen Cito", email = "[email protected]" } | ||
{ name = "Andreas Happe", email = "[email protected]" }, | ||
{ name = "Juergen Cito", email = "[email protected]" }, | ||
] | ||
description = "Helping Ethical Hackers use LLMs in 50 lines of code" | ||
readme = "README.md" | ||
|
@@ -21,14 +19,15 @@ classifiers = [ | |
"Programming Language :: Python :: 3", | ||
"License :: OSI Approved :: MIT License", | ||
"Operating System :: OS Independent", | ||
"Development Status :: 4 - Beta", | ||
"Development Status :: 4 - Beta", | ||
] | ||
dependencies = [ | ||
'fabric == 3.2.2', | ||
'Mako == 1.3.2', | ||
'requests == 2.32.0', | ||
'rich == 13.7.1', | ||
'tiktoken == 0.8.0', | ||
'instructor == 1.3.5', | ||
'PyYAML == 6.0.1', | ||
'python-dotenv == 1.0.1', | ||
'pypsexec == 0.3.0', | ||
|
@@ -59,14 +58,9 @@ where = ["src"] | |
|
||
[tool.pytest.ini_options] | ||
pythonpath = "src" | ||
addopts = [ | ||
"--import-mode=importlib", | ||
] | ||
addopts = ["--import-mode=importlib"] | ||
[project.optional-dependencies] | ||
testing = [ | ||
'pytest', | ||
'pytest-mock' | ||
] | ||
testing = ['pytest', 'pytest-mock'] | ||
|
||
[project.scripts] | ||
wintermute = "hackingBuddyGPT.cli.wintermute:main" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters