forked from bougie/elephantor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
27 lines (24 loc) · 848 Bytes
/
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
from setuptools import setup
def readme():
with open('README.rst') as f:
return f.read()
setup(name='elephantor',
version='0.1',
description="Duplicity frontend",
long_description=readme(),
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Console',
'License :: OSI Approved :: BSD License',
'Programming Language :: Python :: 2.7',
'Topic :: System :: Archiving :: Backup',
],
keywords='duplicity backup rsync ftp unison sftp',
url='https://github.com/bougie/elephantor',
author='David Hymonnet',
author_email='bougie@appartland.eu',
license='BSD',
scripts=['bin/elephantor'],
data_files=[('/etc/elephantor/', ['config/config.sample.py'])],
include_package_data=True,
zip_safe=False)