20 lines
485 B
Python
20 lines
485 B
Python
from setuptools import setup, find_packages
|
|
|
|
with open('LICENSE') as f:
|
|
license = f.read()
|
|
|
|
setup(
|
|
name='zfs_smart_snapshot',
|
|
version='0.0.0',
|
|
description='Smart snapshoting for ZFS',
|
|
author='Matthias Blankertz',
|
|
author_email='matthias@blankertz.org',
|
|
license=license,
|
|
packages=find_packages(exclude=('tests', 'docs')),
|
|
entry_points={
|
|
'console_scripts': [
|
|
'zfs_smart_snapshot = zfs_smart_snapshot.main:main',
|
|
],
|
|
},
|
|
)
|