-
Notifications
You must be signed in to change notification settings - Fork 116
/
setup.py
executable file
·58 lines (50 loc) · 1.76 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
#!/usr/bin/env python
from setuptools import setup, find_packages
import os
SCRIPTS = [os.path.join('bin', n) for n in [
'debops', 'debops-init', 'debops-task',
'debops-defaults', 'debops-padlock', 'debops-update']]
README = open('README.rst').read()
setup(
name="debops",
version="0.6.0",
install_requires=['netaddr', 'argparse', 'passlib', 'ansible'],
scripts=['bin/debops',
'bin/debops-defaults',
'bin/debops-init',
'bin/debops-padlock',
'bin/debops-task',
'bin/debops-update'],
packages=find_packages(exclude=['tests']),
package_data={
'debops': ['padlock-script'],
},
# metadata for upload to PyPI
author="DebOps Developers",
author_email="[email protected]",
description="Your Debian-based data center in a box.",
long_description=README,
license="GPL-3.0",
keywords="ansible",
url="https://debops.org/",
download_url="https://github.com/debops/debops-tools"
"/archive/v0.6.0.tar.gz",
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: System Administrators',
'License :: OSI Approved :: GNU General Public License v3 '
'or later (GPLv3+)',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python :: 2.7',
'Topic :: System :: Systems Administration',
],
# these are for easy_install (used by bdist_*)
zip_safe=True
# entry_points = {
# "console_scripts": [
# "debops = debops.cmds.main:run",
# ],
# },
)