backup-tool/setup.py

11 lines
224 B
Python
Raw Normal View History

2021-04-24 19:27:33 +02:00
from setuptools import setup
setup(
name="backup-tool",
version="0.1.0",
author="Jef Roosens",
description="A utility to simply backing up services.",
# TODO add license
packages=["app", "tests"],
)