initial commit
This commit is contained in:
19
setup.py
Normal file
19
setup.py
Normal file
@@ -0,0 +1,19 @@
|
||||
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',
|
||||
],
|
||||
},
|
||||
)
|
||||
Reference in New Issue
Block a user