tero 1.0.0__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- tero-1.0.0/PKG-INFO +48 -0
- tero-1.0.0/README.md +22 -0
- tero-1.0.0/pyproject.toml +52 -0
- tero-1.0.0/setup.cfg +4 -0
- tero-1.0.0/setup.py +26 -0
- tero-1.0.0/tero/__init__.py +6522 -0
- tero-1.0.0/tero/clouds/__init__.py +0 -0
- tero-1.0.0/tero/clouds/awscloud.py +4388 -0
- tero-1.0.0/tero/clouds/monitor.py +569 -0
- tero-1.0.0/tero/clouds/templates/app-cloud-init-script.j2 +19 -0
- tero-1.0.0/tero/clouds/templates/dbs-cloud-init-script.j2 +107 -0
- tero-1.0.0/tero/clouds/templates/mail-cloud-init-script.j2 +68 -0
- tero-1.0.0/tero/clouds/templates/sally-cloud-init-script.j2 +74 -0
- tero-1.0.0/tero/clouds/templates/web-cloud-init-script.j2 +231 -0
- tero-1.0.0/tero/crypt.py +219 -0
- tero-1.0.0/tero/dauthcmd.py +84 -0
- tero-1.0.0/tero/dcopylogs.py +340 -0
- tero-1.0.0/tero/dissues.py +99 -0
- tero-1.0.0/tero/dlogwatch.py +122 -0
- tero-1.0.0/tero/dparselog.py +694 -0
- tero-1.0.0/tero/dregress.py +461 -0
- tero-1.0.0/tero/driver.py +334 -0
- tero-1.0.0/tero/drundocker.py +523 -0
- tero-1.0.0/tero/dstamp.py +220 -0
- tero-1.0.0/tero/duploades.py +490 -0
- tero-1.0.0/tero/setup/__init__.py +651 -0
- tero-1.0.0/tero/setup/bash.py +48 -0
- tero-1.0.0/tero/setup/cron.py +76 -0
- tero-1.0.0/tero/setup/docker.py +128 -0
- tero-1.0.0/tero/setup/dovecot.py +130 -0
- tero-1.0.0/tero/setup/fail2ban.py +82 -0
- tero-1.0.0/tero/setup/integrity.py +579 -0
- tero-1.0.0/tero/setup/iptables.py +154 -0
- tero-1.0.0/tero/setup/jenkins.py +439 -0
- tero-1.0.0/tero/setup/local.py +445 -0
- tero-1.0.0/tero/setup/logrotate.py +88 -0
- tero-1.0.0/tero/setup/monit.py +64 -0
- tero-1.0.0/tero/setup/nginx.py +305 -0
- tero-1.0.0/tero/setup/openssh.py +122 -0
- tero-1.0.0/tero/setup/postfix.py +98 -0
- tero-1.0.0/tero/setup/postgres.py +338 -0
- tero-1.0.0/tero/setup/sldap.py +267 -0
- tero-1.0.0/tero/setup/ssmtp.py +73 -0
- tero-1.0.0/tero/setup/sssd.py +135 -0
- tero-1.0.0/tero/setup/syslog.py +197 -0
- tero-1.0.0/tero/vmware.py +435 -0
- tero-1.0.0/tero.egg-info/PKG-INFO +48 -0
- tero-1.0.0/tero.egg-info/SOURCES.txt +49 -0
- tero-1.0.0/tero.egg-info/dependency_links.txt +1 -0
- tero-1.0.0/tero.egg-info/requires.txt +9 -0
- tero-1.0.0/tero.egg-info/top_level.txt +1 -0
tero-1.0.0/PKG-INFO
ADDED
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
Metadata-Version: 2.1
|
|
2
|
+
Name: tero
|
|
3
|
+
Version: 1.0.0
|
|
4
|
+
Summary: Configures development machines to cloud resources
|
|
5
|
+
Author-email: The DjaoDjin Team <help@djaodjin.com>
|
|
6
|
+
Maintainer-email: The DjaoDjin Team <help@djaodjin.com>
|
|
7
|
+
License: BSD-2-Clause
|
|
8
|
+
Project-URL: repository, https://github.com/djaodjin/drop
|
|
9
|
+
Project-URL: documentation, https://drop.readthedocs.io/
|
|
10
|
+
Project-URL: changelog, https://github.com/djaodjin/drop/changelog
|
|
11
|
+
Keywords: scripts,cloud,configure,paas,saas
|
|
12
|
+
Classifier: Environment :: Web Environment
|
|
13
|
+
Classifier: Programming Language :: Python
|
|
14
|
+
Classifier: License :: OSI Approved :: BSD License
|
|
15
|
+
Requires-Python: >=3.7
|
|
16
|
+
Description-Content-Type: text/markdown
|
|
17
|
+
Requires-Dist: awscli>=1.31.5
|
|
18
|
+
Requires-Dist: boto3>=1.33.5
|
|
19
|
+
Requires-Dist: paramiko>=2.12.0
|
|
20
|
+
Requires-Dist: pyasn1_modules>=0.2.5
|
|
21
|
+
Requires-Dist: pyOpenSSL>=22.1.0
|
|
22
|
+
Requires-Dist: pytz>=2023.3
|
|
23
|
+
Requires-Dist: requests>=2.31.0
|
|
24
|
+
Requires-Dist: six>=1.16.0
|
|
25
|
+
Requires-Dist: sqlparse>=0.4.2
|
|
26
|
+
|
|
27
|
+
Drop is an inter-project dependencies tool that binds functionality of
|
|
28
|
+
source control systems, autoconf scripts, make and package managers.
|
|
29
|
+
|
|
30
|
+
There are a lot of tools orchestration and deployment to production
|
|
31
|
+
but very few tools to help someone configure a machine for development.
|
|
32
|
+
dws is just a tool.
|
|
33
|
+
|
|
34
|
+
At its core, dws helps to run multiple sequences of _dev_ commands in
|
|
35
|
+
topological order. ex:
|
|
36
|
+
|
|
37
|
+
git clone _repo-1_
|
|
38
|
+
./configure
|
|
39
|
+
make
|
|
40
|
+
make install
|
|
41
|
+
git clone _repo-2_
|
|
42
|
+
./configure
|
|
43
|
+
make
|
|
44
|
+
make install
|
|
45
|
+
|
|
46
|
+
is replaced by a single command:
|
|
47
|
+
|
|
48
|
+
dws build _myproject-and-prerequisites_.xml
|
tero-1.0.0/README.md
ADDED
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
Drop is an inter-project dependencies tool that binds functionality of
|
|
2
|
+
source control systems, autoconf scripts, make and package managers.
|
|
3
|
+
|
|
4
|
+
There are a lot of tools orchestration and deployment to production
|
|
5
|
+
but very few tools to help someone configure a machine for development.
|
|
6
|
+
dws is just a tool.
|
|
7
|
+
|
|
8
|
+
At its core, dws helps to run multiple sequences of _dev_ commands in
|
|
9
|
+
topological order. ex:
|
|
10
|
+
|
|
11
|
+
git clone _repo-1_
|
|
12
|
+
./configure
|
|
13
|
+
make
|
|
14
|
+
make install
|
|
15
|
+
git clone _repo-2_
|
|
16
|
+
./configure
|
|
17
|
+
make
|
|
18
|
+
make install
|
|
19
|
+
|
|
20
|
+
is replaced by a single command:
|
|
21
|
+
|
|
22
|
+
dws build _myproject-and-prerequisites_.xml
|
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
# This pyproject.toml seems to work to build a new package
|
|
2
|
+
# when `setuptools==67.6.1` is installed.
|
|
3
|
+
[project]
|
|
4
|
+
name = "tero"
|
|
5
|
+
dynamic = ["version"]
|
|
6
|
+
description = "Configures development machines to cloud resources"
|
|
7
|
+
readme = "README.md"
|
|
8
|
+
requires-python = ">=3.7"
|
|
9
|
+
license = {text = "BSD-2-Clause"}
|
|
10
|
+
keywords = ["scripts", "cloud", "configure", "paas", "saas"]
|
|
11
|
+
authors = [
|
|
12
|
+
{name = "The DjaoDjin Team", email = "help@djaodjin.com"}
|
|
13
|
+
]
|
|
14
|
+
maintainers = [
|
|
15
|
+
{name = "The DjaoDjin Team", email = "help@djaodjin.com"}
|
|
16
|
+
]
|
|
17
|
+
classifiers = [
|
|
18
|
+
"Environment :: Web Environment",
|
|
19
|
+
"Programming Language :: Python",
|
|
20
|
+
"License :: OSI Approved :: BSD License"
|
|
21
|
+
]
|
|
22
|
+
dependencies = [
|
|
23
|
+
"awscli>=1.31.5",
|
|
24
|
+
"boto3>=1.33.5",
|
|
25
|
+
"paramiko>=2.12.0",
|
|
26
|
+
"pyasn1_modules>=0.2.5",
|
|
27
|
+
"pyOpenSSL>=22.1.0",
|
|
28
|
+
"pytz>=2023.3",
|
|
29
|
+
"requests>=2.31.0",
|
|
30
|
+
"six>=1.16.0",
|
|
31
|
+
"sqlparse>=0.4.2"
|
|
32
|
+
]
|
|
33
|
+
|
|
34
|
+
[project.urls]
|
|
35
|
+
repository = "https://github.com/djaodjin/drop"
|
|
36
|
+
documentation = "https://drop.readthedocs.io/"
|
|
37
|
+
changelog = "https://github.com/djaodjin/drop/changelog"
|
|
38
|
+
|
|
39
|
+
[build-system]
|
|
40
|
+
requires = ["setuptools"]
|
|
41
|
+
build-backend = "setuptools.build_meta"
|
|
42
|
+
|
|
43
|
+
[tool.setuptools.packages.find]
|
|
44
|
+
include = ["tero*"]
|
|
45
|
+
|
|
46
|
+
[tool.setuptools.package-data]
|
|
47
|
+
tero = [
|
|
48
|
+
'clouds/templates/*.j2',
|
|
49
|
+
]
|
|
50
|
+
|
|
51
|
+
[tool.setuptools.dynamic]
|
|
52
|
+
version = {attr = "tero.__version__"}
|
tero-1.0.0/setup.cfg
ADDED
tero-1.0.0/setup.py
ADDED
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
# Copyright (c) 2023, DjaoDjin inc.
|
|
2
|
+
# All rights reserved.
|
|
3
|
+
#
|
|
4
|
+
# Redistribution and use in source and binary forms, with or without
|
|
5
|
+
# modification, are permitted provided that the following conditions are met:
|
|
6
|
+
#
|
|
7
|
+
# 1. Redistributions of source code must retain the above copyright notice,
|
|
8
|
+
# this list of conditions and the following disclaimer.
|
|
9
|
+
# 2. Redistributions in binary form must reproduce the above copyright
|
|
10
|
+
# notice, this list of conditions and the following disclaimer in the
|
|
11
|
+
# documentation and/or other materials provided with the distribution.
|
|
12
|
+
#
|
|
13
|
+
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
14
|
+
# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
|
|
15
|
+
# TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
|
|
16
|
+
# PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR
|
|
17
|
+
# CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
|
|
18
|
+
# EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
|
|
19
|
+
# PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
|
|
20
|
+
# OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
|
|
21
|
+
# WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
|
|
22
|
+
# OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
|
|
23
|
+
# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
24
|
+
from setuptools import setup
|
|
25
|
+
|
|
26
|
+
setup()
|