-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
36 lines (33 loc) · 1.03 KB
/
Copy pathsetup.py
File metadata and controls
36 lines (33 loc) · 1.03 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
31
32
33
34
35
#!/usr/bin/python
from setuptools import setup
def readme():
with open('README.md') as f:
return f.read()
setup(
name='rrbackup',
version='1.0',
description='Versioning backup system',
long_description=readme(),
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Console',
'Operating System :: POSIX',
'Natural Language :: English',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.6',
'Intended Audience :: System Administrators',
'Topic :: System :: Archiving :: Backup'
],
keywords='file backup aws s3',
url='https://github.com/robehickman/rrbackup',
author='Robert Hickman',
author_email='robehickman@gmail.com',
license='MIT',
packages=['rrbackup', 'rrbackup.fsutil'],
test_suite='nose.collector',
tests_require=['nose'],
install_requires=[
'boto3', 'boto3-stubs', 'termcolor', 'pysodium'
],
scripts=['cli/rrbackup'],
zip_safe=False)