#!/usr/bin/env python3 from setuptools import setup setup( name="koya", author="Jordan", author_email="me@jordan.im", url="https://git.jordan.im/koya", description="Archive git repositories from sourcehut user accounts", license="Unlicense", scripts=["koya"], install_requires=["requests"], version='0.0.1' )