13 lines
253 B
Python
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"],
|
||
|
)
|