forked from qwc/pybackive
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
44 lines (40 loc) · 1.14 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
from setuptools import setup, find_packages
VERSION="0.1.0"
setup_info = dict(
name="backive",
version=VERSION,
author="Marcel M. Otte",
author_email="[email protected]",
url="https://github.com/qwc/backive",
description="Service for automatic backup of data to disks provided in hot-swap (SATA docking station)",
license="BSD",
classifiers=[
],
scripts=[
"backive/backive_service",
"backive/backive_udev"
],
packages=find_packages(),
setup_requires=[
"setuptools>=40.4.3",
"pytest>=3.8.2",
"pytest_runner>=4.2",
],
install_requires=[
"jsonschema==2.6.0"
],
tests_require=[
"pytest_cov>=2.6.0",
"pytest_pylint>=0.12.3",
"pytest-pep8>=1.0.6",
"pylint>=2.1.1",
"coverage>=4.5.1",
],
package_data={
"backive": [
"config/schema.yml"
]
},
include_package_data=True
)
setup(**setup_info)