This repository has been archived on 2021-12-24. You can view files and clone it, but cannot push or open issues/pull-requests.
jos/setup.py

13 lines
253 B
Python

"""Setup file for installing the application."""
from setuptools import setup
setup(
name="jos",
version="0.1.0",
author="Jef Roosens",
description="Simplify downloading music.",
# TODO add license
packages=["app", "tests"],
)