Skip to content

Commit

Permalink
New, modern project manager [Hatch](https://hatch.pypa.io/latest/)
Browse files Browse the repository at this point in the history
- removed old and unused directories
- added the new project manager according to [PEP621](https://peps.python.org/pep-0621/), (pypa/pip#12330)
  • Loading branch information
foozzi committed Oct 21, 2023
1 parent ae6a67f commit 7534e4a
Show file tree
Hide file tree
Showing 14 changed files with 56 additions and 621 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -59,3 +59,4 @@ docs/_build/
*.json
.idea/*
.vscode/*
.DS_Store
3 changes: 1 addition & 2 deletions .landscape.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,4 @@ doc-warnings: no
test-warnings: no
strictness: veryhigh
autodetect: yes
ignore-paths:
- docs

2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ matrix:
sudo: required # required for Python 3.7 (travis-ci/travis-ci#9069)

install:
- python setup.py install
- pip install .
- pip install flake8
before_script:
# stop the build if there are Python syntax errors or undefined names
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
FROM python:3-alpine
WORKDIR /usr/src/app
COPY . .
RUN python setup.py install
RUN pip install .
ENTRYPOINT [ "wafw00f" ]
6 changes: 0 additions & 6 deletions MANIFEST.in

This file was deleted.

25 changes: 0 additions & 25 deletions Makefile

This file was deleted.

3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -253,7 +253,8 @@ $ wafw00f https://example.org
The following should do the trick:

```
python setup.py install
git clone https:/EnableSecurity/wafw00f.git && cd wafw00f
pip install .
```

It is also possible to run it within a docker container. Clone this repository first and build the Docker image using `docker build . -t wafw00f`.
Expand Down
177 changes: 0 additions & 177 deletions docs/Makefile

This file was deleted.

Loading

0 comments on commit 7534e4a

Please sign in to comment.