pybackive/setup.py

48 lines
1.2 KiB
Python
Raw Normal View History

2019-01-06 21:29:21 +01:00
import setuptools
from setuptools import setup, find_packages
VERSION="0.1.0"
setup_info = dict(
name="backive",
version=VERSION,
author="Marcel M. Otte",
author_email="qwc+backive@mmo.to",
2019-02-22 21:26:01 +01:00
url="https://github.com/qwc/backive",
description="Service for automatic backup of data to disks provided in hot-swap (SATA docking station)",
2019-01-06 21:29:21 +01:00
license="BSD",
classifiers=[
],
scripts=[
"backive/backive_service",
"backive/backive_udev"
],
2019-01-06 21:29:21 +01:00
packages=find_packages(),
2019-02-22 21:26:01 +01:00
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
2019-01-06 21:29:21 +01:00
)
setup(**setup_info)