-
Notifications
You must be signed in to change notification settings - Fork 118
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
the project now using
pyproject.toml
- Loading branch information
1 parent
753074d
commit fbb6b2b
Showing
5 changed files
with
36 additions
and
40 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -0,0 +1,36 @@ | ||
[project] | ||
name = 'pywerview' | ||
version = '0.7.2' | ||
description = "A Python port of PowerSploit's PowerView" | ||
authors = [ | ||
{ name='Yannick Méheut', email='[email protected]' }, | ||
] | ||
readme = 'README.md' | ||
classifiers = [ | ||
'Environment :: Console', | ||
'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)', | ||
'Programming Language :: Python :: 3.6', | ||
'Topic :: Security', | ||
] | ||
keywords = ['python', 'powersploit', 'pentesting', 'recon', 'active', 'directory', ' windows'] | ||
license = {file = "LICENSE"} | ||
dependencies = [ | ||
'beautifulsoup4', | ||
'lxml', | ||
'pyasn1', | ||
'ldap3-bleeding-edge', | ||
'gssapi', | ||
'pycryptodome', | ||
'impacket @ git+https://github.com/fortra/impacket@master' | ||
] | ||
|
||
[project.urls] | ||
homepage = 'https://github.com/the-useless-one/pywerview' | ||
repository = 'https://github.com/the-useless-one/pywerview' | ||
|
||
[project.scripts] | ||
pywerview = 'pywerview.cli.main:main' | ||
|
||
[build-system] | ||
requires = ["setuptools>=61.0"] | ||
build-backend = "setuptools.build_meta" |
This file was deleted.
Oops, something went wrong.