-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
34 lines (32 loc) · 1.13 KB
/
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
28
29
30
31
32
33
34
from setuptools import setup
config = {
'name': 'pyrsnapshot',
'description': 'A rsnapshot re-implementation with push-over-ssh capability',
'url': 'https://github.com/svirpridon/pyrsnapshot',
'author': 'Jonathan Booth',
'author_email': '[email protected]',
'version': '0.3.2',
'license': 'GPLv3',
'classifiers': [
'Development Status :: 3 - Alpha',
'Environment :: Console',
'Intended Audience :: End Users/Desktop',
'Intended Audience :: System Administrators',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3 :: Only',
'Topic :: System :: Archiving :: Backup',
'Topic :: System :: Systems Administration',
],
'keywords': 'rsync backup',
'packages': ['pyrsnapshot'],
'install_requires': ['arrow', 'fabric3'],
'tests_require': ['assertpy', 'nose2'],
'entry_points': {
'console_scripts': [
'pyrsnapshot = pyrsnapshot.__main__:main',
],
},
}
setup(**config)