-
Notifications
You must be signed in to change notification settings - Fork 50
/
Copy pathsetup.py
39 lines (36 loc) · 1.33 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
from setuptools import find_packages, setup
version = "1.2.12"
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", "setuptools"],
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"],
)