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

16 lines
398 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",
project_urls={"GitHub: Issues": "https://github.com/realorangeone/catfish/issues"},
)