This repository has been archived on 2026-01-06. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
backup-tool/setup.py
Jef Roosens be3ee6ce04
Some checks failed
continuous-integration/drone the build failed
Removed unnecessary ci dep
2021-04-24 22:31:45 +02:00

23 lines
505 B
Python

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"],
extras_require={
"dev": [
"jedi==0.18.0",
"black==20.8b1",
"flake8==3.8.4",
"tox==3.21.1",
],
"ci": [
"black==20.8b1",
"flake8==3.8.4",
"tox==3.21.1",
],
},
)