archive
/
catfish
Archived
1
Fork 0
This repository has been archived on 2023-03-26. You can view files and clone it, but cannot push or open issues or pull requests.
catfish/setup.py

31 lines
701 B
Python
Raw Permalink Normal View History

2018-12-12 15:03:22 +00:00
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,
2018-12-20 14:05:43 +00:00
pathon_requires=">=3.7",
2018-12-13 16:52:37 +00:00
install_requires=[
"click",
"daemonize>=2.5.0",
2018-12-13 16:52:37 +00:00
"psutil",
"aiohttp",
"ujson",
"pyzmq",
"aiofiles",
2018-12-18 21:42:23 +00:00
"python-dotenv",
2018-12-21 16:46:30 +00:00
"prettytable",
2018-12-13 16:52:37 +00:00
],
2018-12-12 15:53:56 +00:00
entry_points="""
[console_scripts]
ctf=catfish.__main__:cli
""",
2018-12-12 15:03:22 +00:00
project_urls={"GitHub: Issues": "https://github.com/realorangeone/catfish/issues"},
)