2017-05-21 22:33:57 +02:00
|
|
|
#!/usr/bin/env python
|
|
|
|
from os import environ
|
|
|
|
|
|
|
|
try:
|
|
|
|
from setuptools import setup
|
|
|
|
except ImportError:
|
|
|
|
from distutils import setup
|
|
|
|
|
2020-12-21 16:08:11 +01:00
|
|
|
version = '0.3.1'
|
2017-05-21 22:33:57 +02:00
|
|
|
|
|
|
|
setup(
|
|
|
|
name='zsnapper',
|
|
|
|
version=str(version),
|
|
|
|
description="ZFS snapshot manager",
|
|
|
|
author="Fredrik Eriksson",
|
|
|
|
author_email="zsnapper@wb9.se",
|
|
|
|
url="https://github.com/fredrik-eriksson/zsnapper",
|
|
|
|
platforms=['any'],
|
|
|
|
license='BSD',
|
|
|
|
packages=['zsnaplib'],
|
|
|
|
classifiers=[
|
2017-05-25 09:59:04 +02:00
|
|
|
'Development Status :: 3 - Alpha',
|
2017-05-21 22:33:57 +02:00
|
|
|
'Environment :: Console',
|
|
|
|
'Intended Audience :: System Administrators',
|
|
|
|
'License :: OSI Approved :: BSD License',
|
|
|
|
'Programming Language :: Python :: 2',
|
|
|
|
'Programming Language :: Python :: 3',
|
|
|
|
'Topic :: Utilities',
|
|
|
|
],
|
|
|
|
keywords='zfs snapshot backup',
|
|
|
|
scripts=['bin/zsnapper']
|
|
|
|
)
|