tenant-sec 0.0.1__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.
@@ -0,0 +1,73 @@
1
+ # Project-specific
2
+ IGNORE/*
3
+
4
+ # Python
5
+ __pycache__/
6
+ *.py[cod]
7
+ *$py.class
8
+ *.so
9
+ .Python
10
+ build/
11
+ develop-eggs/
12
+ dist/
13
+ downloads/
14
+ eggs/
15
+ .eggs/
16
+ lib/
17
+ lib64/
18
+ parts/
19
+ sdist/
20
+ var/
21
+ wheels/
22
+ share/python-wheels/
23
+ *.egg-info/
24
+ .installed.cfg
25
+ *.egg
26
+ MANIFEST
27
+
28
+ # Virtual environments
29
+ .env
30
+ .venv
31
+ env/
32
+ venv/
33
+ ENV/
34
+ env.bak/
35
+ venv.bak/
36
+
37
+ # Testing
38
+ .tox/
39
+ .nox/
40
+ .coverage
41
+ .coverage.*
42
+ .cache
43
+ nosetests.xml
44
+ coverage.xml
45
+ *.cover
46
+ *.py,cover
47
+ .hypothesis/
48
+ .pytest_cache/
49
+ cover/
50
+
51
+ # IDE
52
+ .idea/
53
+ .vscode/
54
+ *.swp
55
+ *.swo
56
+ *~
57
+
58
+ # macOS
59
+ .DS_Store
60
+ .AppleDouble
61
+ .LSOverride
62
+ ._*
63
+
64
+ # Output files
65
+ *.html
66
+ !docs/*.html
67
+ *.png
68
+ !docs/*.png
69
+ *.csv
70
+ !tests/fixtures/**/*.csv
71
+
72
+ # Hatch
73
+ .hatch/
@@ -0,0 +1,28 @@
1
+ Metadata-Version: 2.4
2
+ Name: tenant-sec
3
+ Version: 0.0.1
4
+ Summary: Open-source framework for evaluating cloud provider security capabilities at the tenant level
5
+ License: Apache-2.0
6
+ Keywords: assessment,cloud,compliance,security
7
+ Classifier: Development Status :: 1 - Planning
8
+ Classifier: Intended Audience :: Developers
9
+ Classifier: Intended Audience :: Information Technology
10
+ Classifier: License :: OSI Approved :: Apache Software License
11
+ Classifier: Programming Language :: Python :: 3
12
+ Classifier: Programming Language :: Python :: 3.12
13
+ Classifier: Topic :: Security
14
+ Requires-Python: >=3.12
15
+ Description-Content-Type: text/markdown
16
+
17
+ # tenant-sec
18
+
19
+ An open-source framework for evaluating cloud provider security capabilities at the **tenant level** — the controls and capabilities a cloud customer can actually use, configure, and rely on.
20
+
21
+ ## Status
22
+
23
+ This is a placeholder release to reserve the package name. The first functional release is coming soon.
24
+
25
+ ## Links
26
+
27
+ - **Source:** https://github.com/CloudSEC/TenantSec
28
+ - **License:** Apache-2.0
@@ -0,0 +1,12 @@
1
+ # tenant-sec
2
+
3
+ An open-source framework for evaluating cloud provider security capabilities at the **tenant level** — the controls and capabilities a cloud customer can actually use, configure, and rely on.
4
+
5
+ ## Status
6
+
7
+ This is a placeholder release to reserve the package name. The first functional release is coming soon.
8
+
9
+ ## Links
10
+
11
+ - **Source:** https://github.com/CloudSEC/TenantSec
12
+ - **License:** Apache-2.0
@@ -0,0 +1,44 @@
1
+ #!/usr/bin/env bash
2
+ set -euo pipefail
3
+
4
+ cd "$(dirname "$0")"
5
+
6
+ echo "=== Installing build tools ==="
7
+ pip install --upgrade build twine
8
+
9
+ echo ""
10
+ echo "=== Building package ==="
11
+ rm -rf dist/
12
+ python -m build
13
+
14
+ echo ""
15
+ echo "=== Package contents ==="
16
+ twine check dist/*
17
+
18
+ echo ""
19
+ echo "========================================="
20
+ echo " Step 1: Upload to TestPyPI"
21
+ echo "========================================="
22
+ echo ""
23
+ read -p "Upload to TestPyPI? [y/N] " confirm_test
24
+ if [[ "$confirm_test" =~ ^[Yy]$ ]]; then
25
+ twine upload --repository testpypi dist/*
26
+ echo ""
27
+ echo "Check it at: https://test.pypi.org/project/tenant-sec/"
28
+ echo ""
29
+ read -p "Does TestPyPI look good? Proceed to real PyPI? [y/N] " confirm_prod
30
+ else
31
+ read -p "Skip TestPyPI and go straight to PyPI? [y/N] " confirm_prod
32
+ fi
33
+
34
+ echo ""
35
+ if [[ "$confirm_prod" =~ ^[Yy]$ ]]; then
36
+ echo "========================================="
37
+ echo " Step 2: Upload to PyPI (production)"
38
+ echo "========================================="
39
+ twine upload dist/*
40
+ echo ""
41
+ echo "Done! Check it at: https://pypi.org/project/tenant-sec/"
42
+ else
43
+ echo "Skipped PyPI upload."
44
+ fi
@@ -0,0 +1,24 @@
1
+ [build-system]
2
+ requires = ["hatchling"]
3
+ build-backend = "hatchling.build"
4
+
5
+ [project]
6
+ name = "tenant-sec"
7
+ version = "0.0.1"
8
+ description = "Open-source framework for evaluating cloud provider security capabilities at the tenant level"
9
+ readme = "README.md"
10
+ requires-python = ">=3.12"
11
+ license = { text = "Apache-2.0" }
12
+ keywords = ["cloud", "security", "compliance", "assessment"]
13
+ classifiers = [
14
+ "Development Status :: 1 - Planning",
15
+ "Intended Audience :: Developers",
16
+ "Intended Audience :: Information Technology",
17
+ "License :: OSI Approved :: Apache Software License",
18
+ "Programming Language :: Python :: 3",
19
+ "Programming Language :: Python :: 3.12",
20
+ "Topic :: Security",
21
+ ]
22
+
23
+ [tool.hatch.build.targets.wheel]
24
+ packages = ["src/tenant_sec"]
@@ -0,0 +1,3 @@
1
+ """tenant-sec: Cloud provider security capability assessment framework."""
2
+
3
+ __version__ = "0.0.1"