19 lines
392 B
Python
19 lines
392 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",
|
||
|
]
|
||
|
},
|
||
|
)
|