content-cli 0.2.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.
- content_cli-0.2.0/.gitignore +8 -0
- content_cli-0.2.0/LICENSE +683 -0
- content_cli-0.2.0/NOTICE +65 -0
- content_cli-0.2.0/PKG-INFO +108 -0
- content_cli-0.2.0/README.md +82 -0
- content_cli-0.2.0/content_cli/__init__.py +3 -0
- content_cli-0.2.0/content_cli/__main__.py +4 -0
- content_cli-0.2.0/content_cli/builders.py +119 -0
- content_cli-0.2.0/content_cli/cli.py +310 -0
- content_cli-0.2.0/pyproject.toml +50 -0
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
# This package's own build output.
|
|
2
|
+
#
|
|
3
|
+
# It also shadows the repository root's ignore file for packaging: hatchling
|
|
4
|
+
# puts the nearest .gitignore into the sdist, and the root one describes the
|
|
5
|
+
# monorepo's private layout, which does not exist in a published distribution.
|
|
6
|
+
build/
|
|
7
|
+
dist/
|
|
8
|
+
*.egg-info/
|