Skip to content

Commit

Permalink
the project now using pyproject.toml
Browse files Browse the repository at this point in the history
  • Loading branch information
ThePirateWhoSmellsOfSunflowers committed Dec 12, 2024
1 parent 753074d commit fbb6b2b
Show file tree
Hide file tree
Showing 5 changed files with 36 additions and 40 deletions.
1 change: 0 additions & 1 deletion MANIFEST.in

This file was deleted.

36 changes: 36 additions & 0 deletions pyproject.toml
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"
7 changes: 0 additions & 7 deletions requirements.txt

This file was deleted.

2 changes: 0 additions & 2 deletions setup.cfg

This file was deleted.

30 changes: 0 additions & 30 deletions setup.py

This file was deleted.

0 comments on commit fbb6b2b

Please sign in to comment.