commitship-cli 0.1.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.
- commitship_cli-0.1.0/COMMERCIAL.md +28 -0
- commitship_cli-0.1.0/LICENSE +662 -0
- commitship_cli-0.1.0/MANIFEST.in +12 -0
- commitship_cli-0.1.0/PKG-INFO +394 -0
- commitship_cli-0.1.0/README.md +360 -0
- commitship_cli-0.1.0/SAY_LAW_PROMPT.md +206 -0
- commitship_cli-0.1.0/SHIP_LAW_PROMPT.md +191 -0
- commitship_cli-0.1.0/pyproject.toml +56 -0
- commitship_cli-0.1.0/setup.cfg +4 -0
- commitship_cli-0.1.0/src/commitship_cli.egg-info/PKG-INFO +394 -0
- commitship_cli-0.1.0/src/commitship_cli.egg-info/SOURCES.txt +31 -0
- commitship_cli-0.1.0/src/commitship_cli.egg-info/dependency_links.txt +1 -0
- commitship_cli-0.1.0/src/commitship_cli.egg-info/entry_points.txt +2 -0
- commitship_cli-0.1.0/src/commitship_cli.egg-info/requires.txt +5 -0
- commitship_cli-0.1.0/src/commitship_cli.egg-info/top_level.txt +1 -0
- commitship_cli-0.1.0/src/ship/__init__.py +13 -0
- commitship_cli-0.1.0/src/ship/__main__.py +3 -0
- commitship_cli-0.1.0/src/ship/cli.py +143 -0
- commitship_cli-0.1.0/src/ship/eyes.py +95 -0
- commitship_cli-0.1.0/src/ship/law.py +175 -0
- commitship_cli-0.1.0/src/ship/measure.py +432 -0
- commitship_cli-0.1.0/src/ship/mechanical.py +386 -0
- commitship_cli-0.1.0/src/ship/pipeline.py +384 -0
- commitship_cli-0.1.0/src/ship/say.c +115 -0
- commitship_cli-0.1.0/src/ship/say.py +134 -0
- commitship_cli-0.1.0/src/ship/ship.c +122 -0
- commitship_cli-0.1.0/tests/conftest.py +59 -0
- commitship_cli-0.1.0/tests/test_cli.py +241 -0
- commitship_cli-0.1.0/tests/test_law.py +91 -0
- commitship_cli-0.1.0/tests/test_measure.py +367 -0
- commitship_cli-0.1.0/tests/test_mechanical.py +264 -0
- commitship_cli-0.1.0/tests/test_pipeline.py +223 -0
- commitship_cli-0.1.0/tests/test_say.py +63 -0
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
# Commercial licensing
|
|
2
|
+
|
|
3
|
+
ship is dual-licensed.
|
|
4
|
+
|
|
5
|
+
**Open source.** Under AGPL-3.0-or-later you may use, modify, and
|
|
6
|
+
redistribute ship freely — including commercially — provided you comply with
|
|
7
|
+
the AGPL, including section 13: if you run a modified version as a network
|
|
8
|
+
service, you must offer the complete corresponding source to that service's
|
|
9
|
+
users.
|
|
10
|
+
|
|
11
|
+
**Commercial.** If the AGPL does not suit your use — embedding ship in a
|
|
12
|
+
proprietary product, shipping it inside a closed developer tool or CI
|
|
13
|
+
service, or any deployment where the source-offer obligation is unacceptable
|
|
14
|
+
— a commercial license removes those obligations.
|
|
15
|
+
|
|
16
|
+
Contact: devkancheti4@gmail.com with:
|
|
17
|
+
|
|
18
|
+
1. how ship will be deployed (developer workstations, CI, a hosted service),
|
|
19
|
+
2. approximate scale (developers or repositories),
|
|
20
|
+
3. whether you need policy changes to the measurements — the secret shapes,
|
|
21
|
+
the protected-branch list, the bulk limits — compiled for your
|
|
22
|
+
organisation. The two laws are fixed and proved; what counts as a secret
|
|
23
|
+
or a protected branch lives in the measurement, and that is where
|
|
24
|
+
per-organisation policy belongs.
|
|
25
|
+
|
|
26
|
+
The copyright holder for ship and its two machine-authored kernels
|
|
27
|
+
(`ship.c`, `say.c`) is devkancheti4-design; dual licensing is offered by the
|
|
28
|
+
copyright holder, which the AGPL fully permits.
|