backup-tool/setup.py

27 lines
541 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"],
extras_require={
2021-04-24 22:56:27 +02:00
"ci": [
"tox==3.21.1",
],
2021-04-24 23:17:03 +02:00
"test": {
"pytest==6.2.3",
"pytest-cov==2.11.1",
},
2021-04-24 23:09:13 +02:00
"lint": [
2021-04-24 19:27:33 +02:00
"black==20.8b1",
"flake8==3.8.4",
2021-04-24 22:31:45 +02:00
],
2021-04-24 23:09:13 +02:00
"dev": [
"jedi==0.18.0",
],
2021-04-24 19:27:33 +02:00
},
)