File tree Expand file tree Collapse file tree 5 files changed +6
-7
lines changed Expand file tree Collapse file tree 5 files changed +6
-7
lines changed Original file line number Diff line number Diff line change @@ -6,4 +6,4 @@ include *.md *.txt *.sh *.yml MANIFEST.in
66recursive-include docs *.rst *.png Makefile *.py *.txt
77recursive-include pwnlib *.py *.asm *.rst *.md *.txt *.sh __doc__ *.mako
88recursive-include pwn *.py *.asm *.rst *.md *.txt *.sh
9- recursive -exclude *.pyc
9+ global -exclude *.pyc
Original file line number Diff line number Diff line change @@ -2,6 +2,6 @@ FROM pwntools/pwntools:stable
22
33USER root
44RUN python2.7 -m pip install --upgrade git+https://github.com/Gallopsled/pwntools@beta \
5- && python3 -m pip install --upgrade git+https://github.com/Gallopsled/pwntools@beta
5+ && python3 -m pip install --force-reinstall -- upgrade git+https://github.com/Gallopsled/pwntools@beta
66RUN PWNLIB_NOTERM=1 pwn update
77USER pwntools
Original file line number Diff line number Diff line change @@ -2,6 +2,6 @@ FROM pwntools/pwntools:stable
22
33USER root
44RUN python2.7 -m pip install --upgrade git+https://github.com/Gallopsled/pwntools@dev \
5- && python3 -m pip install --upgrade git+https://github.com/Gallopsled/pwntools@dev
5+ && python3 -m pip install --force-reinstall -- upgrade git+https://github.com/Gallopsled/pwntools@dev
66RUN PWNLIB_NOTERM=1 pwn update
77USER pwntools
Original file line number Diff line number Diff line change @@ -2,6 +2,6 @@ FROM pwntools/pwntools:base
22
33USER root
44RUN python2.7 -m pip install --upgrade git+https://github.com/Gallopsled/pwntools@stable \
5- && python3 -m pip install --upgrade git+https://github.com/Gallopsled/pwntools@stable
5+ && python3 -m pip install --force-reinstall -- upgrade git+https://github.com/Gallopsled/pwntools@stable
66RUN PWNLIB_NOTERM=1 pwn update
77USER pwntools
Original file line number Diff line number Diff line change 33
44import glob
55import os
6- import platform
7- import subprocess
86import sys
9- import traceback
107from distutils .command .install import INSTALL_SCHEMES
118from distutils .sysconfig import get_python_inc
129from distutils .util import convert_path
1310
11+ from setuptools import find_packages
1412from setuptools import setup
1513
1614# Get all template files
5048
5149 import toml
5250 project = toml .load ('pyproject.toml' )['project' ]
51+ compat ['packages' ] = find_packages ()
5352 compat ['install_requires' ] = project ['dependencies' ]
5453 compat ['name' ] = project ['name' ]
5554 # https://github.com/pypa/pip/issues/7953
You can’t perform that action at this time.
0 commit comments