-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsetup.py
More file actions
30 lines (29 loc) · 1.05 KB
/
setup.py
File metadata and controls
30 lines (29 loc) · 1.05 KB
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
28
29
30
#!/usr/bin/python3
from setuptools import setup, find_packages
setup(name='fackup',
version='0.2.2',
description='File backup tool using rsync and dar.',
author='Benedykt Przybyło',
author_email='b3niup@gmail.com',
url='https://github.com/b3niup/fackup',
keywords='backup dar rsync',
packages=find_packages(),
entry_points={
'console_scripts': [
'fackup = fackup.core:main',
]
},
data_files=[('/etc', ['fackup.yml.example'])],
install_requires=['PyYAML>=3.0'],
classifiers=[
'Development Status :: 3 - Alpha',
'Environment :: Console',
'Intended Audience :: Developers',
'Intended Audience :: End Users/Desktop',
'Intended Audience :: System Administrators',
'License :: OSI Approved :: MIT License',
'Operating System :: POSIX',
'Programming Language :: Python :: 3.4',
'Topic :: System :: Archiving :: Backup',
'Topic :: System :: Systems Administration',
])