aboutsummaryrefslogtreecommitdiff
path: root/setup.py
blob: 6771d5ad251ab671854ccbb95190ec7a5acb2dde (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/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'
)