forked from holland-backup/holland
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
45 lines (42 loc) · 1.48 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
from setuptools import setup, find_packages
import sys, os
version = '1.1.9'
setup(name="holland",
version=version,
description="Holland Core Plugins",
long_description="""\
These are the plugins required for basic Holland functionality.
""",
classifiers=[], # Get strings from http://pypi.python.org/pypi?%3Aaction=list_classifiers
keywords="",
author="Rackspace",
author_email="[email protected]",
url='http://www.hollandbackup.org/',
license="3-Clause BSD",
packages=find_packages(exclude=["ez_setup", "examples", "tests"]),
include_package_data=True,
zip_safe=True,
test_suite='tests',
install_requires=[
'configobj>=4.6.0',
'future',
'setuptools',
'six'
#'argparse' #Not built into python2.6
],
entry_points="""
# Scripts generated by setuptools
[console_scripts]
holland = holland.core.cmdshell:main
# Holland subcommands
[holland.commands]
#help = holland.commands.help:Help
listplugins = holland.commands.list_plugins:ListPlugins
listbackups = holland.commands.list_backups:ListBackups
backup = holland.commands.backup:Backup
mk-config = holland.commands.mk_config:MkConfig
purge = holland.commands.purge:Purge
#restore = holland.commands.restore:Restore
""",
namespace_packages=['holland', 'holland.backup', 'holland.lib', 'holland.commands'],
)