from setuptools import setup, find_packages setup( name="ctftool", version="0.1.0", description="Command line tool to interact with CTFd", author="Maurizio Porrato", author_email="maurizio.porrato@mailbox.org", scripts=["scripts/ctf"], packages=find_packages(), package_data={"ctftool": ["templates/*"]}, install_requires=[ "fire", "Jinja2", "requests", "rich", ], )