-
Notifications
You must be signed in to change notification settings - Fork 39
/
setup.py
62 lines (60 loc) · 1.91 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
# -*- encoding: utf-8 -*-
from setuptools import setup, find_packages
version = '2.13.8'
setup(name='backy2',
version=version,
description="A block / disk based backup and restore solution",
long_description=open('README.rst', 'r', encoding='utf-8').read(),
classifiers="""Development Status :: 4 - Beta
Environment :: Console
Intended Audience :: System Administrators
License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)
Operating System :: POSIX
Programming Language :: Python
Programming Language :: Python :: 3
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Topic :: System :: Archiving :: Backup
"""[:-1].split('\n'),
keywords='backup',
author='Daniel Kraft <[email protected]>',
author_email='[email protected]',
url='http://backy2.com/',
license='LGPL-3',
packages=find_packages('src', exclude=['ez_setup', 'examples', 'tests']),
package_dir={
'': 'src',
},
package_data={
'src': ['meta_backends/sql_migrations/alembic.ini'],
},
include_package_data=True,
zip_safe=False, # ONLY because of alembic.ini. The rest is zip-safe.
install_requires=[
'PrettyTable>=0.7.2',
'sqlalchemy>=1.0.11', # 1.0.11 is on ubuntu 16.04
'psutil>=2.2.1',
'shortuuid>=0.4.2',
'setproctitle>=1.1.8',
'python-dateutil>=2.6.0',
'alembic>=0.7.5',
'fusepy>=3.0.0', # TODO: This is not available
#'pycryptodome>=3.6.1,<4',
#'zstandard>=0.9.0',
#'boto>=2.38.0',
#'psycopg2>=2.6.1',
#'pex==1.1.0',
],
# tests_require=[
# 'pytest-cov',
# 'pytest-capturelog',
# 'pytest-timeout',
# 'pytest',
# ],
entry_points="""
[console_scripts]
backy2 = backy2.scripts.backy:main
""",
)