29 lines
671 B
Python
29 lines
671 B
Python
from setuptools import setup
|
|
|
|
setup(
|
|
name="catfish",
|
|
version="0.0.0",
|
|
url="https://github.com/realorangeone/catfish",
|
|
license="MIT",
|
|
author="Jake Howard",
|
|
description="Catfish",
|
|
packages=["catfish"],
|
|
include_package_data=True,
|
|
zip_safe=False,
|
|
pathon_requires=">=3.6",
|
|
install_requires=[
|
|
"click",
|
|
"daemonize",
|
|
"psutil",
|
|
"aiohttp",
|
|
"ujson",
|
|
"pyzmq",
|
|
"aiofiles",
|
|
"python-dotenv",
|
|
],
|
|
entry_points="""
|
|
[console_scripts]
|
|
ctf=catfish.__main__:cli
|
|
""",
|
|
project_urls={"GitHub: Issues": "https://github.com/realorangeone/catfish/issues"},
|
|
)
|