proper pyproject

This commit is contained in:
Alexandre ZANNI 2022-10-16 17:46:31 +02:00 committed by GitHub
parent f724f821f2
commit b9e1830a06
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -2,7 +2,23 @@
name = "donpapi"
version = "1.0.0"
description = "Dumping revelant information on compromised targets without AV detection"
authors = ["login-securite"]
authors = ["Login Securite <contact@login-securite.com>"]
readme = "readme.md"
homepage = "https://github.com/login-securite/DonPAPI"
repository = "https://github.com/login-securite/DonPAPI"
exclude = []
include = ["config/*", "lazagne/*", "lib/*", "software/*", "*.py"]
classifiers = [
'Environment :: Console',
'Programming Language :: Python :: 3',
'Topic :: Security',
]
packages = [
{ include = "lib", from = "." }
]
[tool.poetry.scripts]
donpapi = 'DonPAPI:main'
[tool.poetry.dependencies]
python = "^3.9"