-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
33 lines (31 loc) · 1.06 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
import os.path
from setuptools import setup, find_packages
from undine import __version__
__DIR__ = os.path.abspath(os.path.dirname(__file__))
setup(
name = 'undine',
version = __version__,
description = 'A wrapper for handling multi-archive backups with Borg',
url = 'https://github.com/votesmart/undine',
author = 'Mike Shultz',
author_email = 'mike@votesmart.org',
classifiers = [
'Development Status :: 4 - Beta',
'Intended Audience :: System Administrators',
'Topic :: System :: Archiving :: Backup',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
],
keywords = 'backup borg',
packages = find_packages(),
install_requires = open("requirements.txt").readlines(),
entry_points={
'console_scripts': [
'undine=undine:main',
],
},
)