-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
70 lines (60 loc) · 1.72 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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
name = 'spare'
description = 'One S3 backup, encrypted on the fly.'
version = '0.4.0'
def get_long_description():
readme = open('README.rst').read()
history = open('HISTORY.rst').read()
# cut the part before the description to avoid repetition on pypi
readme = readme[readme.index(description) + len(description):]
return '\n'.join((readme, history))
setup(
name=name,
version=version,
description=description,
long_description=get_long_description(),
url='http://github.com/seantis/spare',
author='Seantis GmbH',
author_email='[email protected]',
license='MIT',
packages=find_packages(exclude=['ez_setup']),
namespace_packages=name.split('.')[:-1],
include_package_data=True,
zip_safe=False,
platforms='any',
# we require 3.6.2 (not just 3.6.*), due to this bug:
# https://bugs.python.org/issue29581
python_requires='>=3.6.2',
install_requires=[
'boto3',
'cached_property',
'click',
'cryptography',
'logbook',
'miscreant',
'ulid-py',
],
extras_require=dict(
test=[
'hypothesis',
'mirakuru',
'flake8',
'port-for',
'pytest',
'pytest-cov',
'pytest-flake8',
'pytest-logbook'
],
),
entry_points={
'console_scripts': 'spare=spare.cli:cli'
},
classifiers=[
'Intended Audience :: System Administrators',
'License :: OSI Approved :: MIT License',
'Operating System :: Unix',
'Programming Language :: Python :: 3',
'Topic :: System :: Archiving :: Backup',
]
)