Skip to content

Commit

Permalink
Remove empty requirements.txt to avoid install issues
Browse files Browse the repository at this point in the history
Older versions of setuptools don't support the following directive:
```
install_requires = file: requirements.txt
```

Fixes #194
  • Loading branch information
jafingerhut committed Jun 22, 2023
1 parent 771a452 commit 978598d
Show file tree
Hide file tree
Showing 4 changed files with 0 additions and 9 deletions.
6 changes: 0 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,18 +42,12 @@ More information about Black, you find at
The following software is required to run PTF:

* Python 3.x
* six 1.16.0
* Scapy 2.4.5 (unless you provide another packet manipulation module)
* pypcap (optional - VLAN tests will fail without this)
* tcpdump (optional - Scapy will complain if it's missing)

Root/sudo privilege is required on the host, in order to run `ptf`.

To install minimal requirements execute:
```text
pip install -r requirements.txt
```

The default packet manipulator tool for `ptf` is `Scapy`. To install it use:
```text
pip install scapy==2.4.5
Expand Down
2 changes: 0 additions & 2 deletions requirements-dev.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,2 @@
-r requirements.txt

black==22.3.0
pytest==6.2.5
Empty file removed requirements.txt
Empty file.
1 change: 0 additions & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,6 @@ platforms = any
python_requires = >=3.4
setup_requires =
setuptools_scm
install_requires = file: requirements.txt

[options.packages.find]
where = src

0 comments on commit 978598d

Please sign in to comment.