tuiHoneyPot

front and back end of my TUI honeypot
Log | Files | Refs | README

setup.py (345B)


      1 from setuptools import setup
      2 
      3 requirements = [
      4     "flask",
      5     "flask-sqlalchemy",
      6     "flask-session2",
      7     "marshmallow",
      8     "pyjwt",
      9     "python-dotenv",
     10 ]
     11 
     12 setup(
     13     name="the-kitchen",
     14     version="1.0.0",
     15     description="The Kitchen CTF Platform",
     16     author="The Kitchen Team",
     17     install_requires=requirements,
     18     py_modules=[],
     19 )