From 09a82dd46b90cad8a7efa092ba626d5af95ad5d2 Mon Sep 17 00:00:00 2001 From: Yan Date: Thu, 21 Dec 2023 12:27:37 -0700 Subject: [PATCH] bump version and remove yaml reqs --- setup.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index 86e0ecc..42eaef8 100644 --- a/setup.py +++ b/setup.py @@ -7,10 +7,10 @@ setup( name="pwnshop", - version="1.0", + version="2.0", python_requires=">=3.8", packages=packages, - install_requires=["jinja2==3.0.3", "nbconvert==6.4.4", "asteval", "pyastyle", "pwntools", "ezmp", "pyyaml", "ruamel.yaml", "docker"], + install_requires=["jinja2==3.0.3", "nbconvert==6.4.4", "asteval", "pyastyle", "pwntools", "ezmp", "docker"], package_data={ dd.replace("/","."):cc for dd,cc in ( (d,[f for f in c if f.endswith(".c")]) for d,_,c in os.walk("pwnshop") ) if cc }, description="A framework for generating CTF challenges for learning", url="https://github.com/pwncollege/pwnshop",