home-backup/setup.py

17 lines
422 B
Python
Raw Permalink Normal View History

2020-04-15 22:00:37 +00:00
from setuptools import setup, find_packages
# Config
VERSION = "0.1"
# Setup
setup(name="home-backup",
version=VERSION,
license="AGPLv3+",
description="Automation to backup home filsystem (using btrfs features).",
author="Marko Semet",
author_email="marko@marko10-000.de",
#url="", TODO: Make a project site
packages=find_packages(),
2020-04-16 12:13:13 +00:00
install_requires=["aiofile==1.5.2"]
2020-04-15 22:00:37 +00:00
)