added file manifast.in

This commit is contained in:
mh4x0f 2020-04-13 21:26:34 -03:00
parent 0a4569352d
commit 365cd9294e
4 changed files with 11 additions and 3 deletions

View File

@ -7,6 +7,7 @@ All notable changes to this project will be documented in this file.
## [1.0.0] - 2020-04-02
### Added
- added file manifast.in [mh4x0f]
- added check must be run as root. [mh4x0f]
- added initial logo design tool on README.md [mh4x0f]
- added initial details for tool on README.md [mh4x0f]

7
MANIFEST.in Normal file
View File

@ -0,0 +1,7 @@
exclude *.pyc .gitignore MANIFEST.in
include setup.py
include README.md
include LICENSE.md
recursive-include bin *
recursive-include wifipumpkin3 *.py
recursive-include wifipumpkin3 *.*

View File

@ -7,11 +7,12 @@ test:
python3.7 -m unittest -v
setup:
find . -name '*.pyc' -delete
python3.7 setup.py install
clean:
rm -rf build dist README MANIFEST *.egg-info
python3.7 setup.py clear --all
python3.7 setup.py clean --all
distclean: clean
rm -rf .venv
rm -rf .venv

View File

@ -63,7 +63,6 @@ setup(
"License :: OSI Approved :: Apache 2.0 License",
"Natural Language :: English",
"Operating System :: POSIX :: Linux",
"Topic :: Scientific/Engineering :: Information Analysis",
"Environment :: Console",
],
)