Skip to content

Commit

Permalink
first release #12
Browse files Browse the repository at this point in the history
  • Loading branch information
KissPeter committed Jan 1, 2021
1 parent cfe2253 commit 402a171
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 9 deletions.
6 changes: 6 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,12 @@ if you application can cope with the fuzzed parameters. Does not require coding.

## Installation

Latest release version:

```
pip3 install APIFuzzer
```
Development version:
Fetch the most recent code from GitHub
```
$ git clone https://github.com/KissPeter/APIFuzzer.git
Expand Down
24 changes: 15 additions & 9 deletions docs/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -19,12 +19,18 @@ clean:
apidoc:
sphinx-apidoc ../apifuzzer -f -e -o .

builld-pip-package:
cd ..
mkdir /tmp/$$
mv test # not the best, but setup exclude doesn't work
find . -name "__pycache __" -exec rm -rf {} \;
rm -fr dist/ build/ *.egg-info
python3 setup.py sdist bdist_wheel
tar -tvf dist/APIFuzzer-*.tar.gz
mv /tmp/$$/test .
build-pip-package:
DIR=`mktemp -d`
echo $DIR
mv ../test $DIR/ # not the best, but setup exclude doesn't work
find ../ -name "__pycache __" -exec rm -rf {} \;
rm -fr ../dist/ ../build/ ../*.egg-info
cd .. && python3 setup.py sdist bdist_wheel
tar -tvf ../dist/APIFuzzer-*.tar.gz
mv $DIR/test ../

upload-test-pip-package:
cd .. && python3 -m twine upload --repository testpypi dist/* --verbose

upload-pip-package:
cd .. && python3 -m twine upload --repository pypi dist/* --verbose

0 comments on commit 402a171

Please sign in to comment.