ctftool/setup.py

19 lines
440 B
Python
Raw Permalink Normal View History

2022-11-13 10:47:02 +00:00
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",
],
)