graphfakos 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.
- graphfakos-0.0.1/API_COMPATIBILITY.md +36 -0
- graphfakos-0.0.1/CODE_OF_CONDUCT.md +45 -0
- graphfakos-0.0.1/CODE_QUALITY.md +93 -0
- graphfakos-0.0.1/CONTRIBUTING.md +149 -0
- graphfakos-0.0.1/LICENSE +201 -0
- graphfakos-0.0.1/MANIFEST.in +15 -0
- graphfakos-0.0.1/NOTICE +20 -0
- graphfakos-0.0.1/PKG-INFO +233 -0
- graphfakos-0.0.1/README.md +202 -0
- graphfakos-0.0.1/RELEASING.md +48 -0
- graphfakos-0.0.1/SECURITY.md +39 -0
- graphfakos-0.0.1/SUPPORT.md +38 -0
- graphfakos-0.0.1/docs/README.md +107 -0
- graphfakos-0.0.1/docs/custom-provider-example.md +98 -0
- graphfakos-0.0.1/docs/source-tree-owner-map.md +68 -0
- graphfakos-0.0.1/docs/ui-contracts.md +107 -0
- graphfakos-0.0.1/pyproject.toml +65 -0
- graphfakos-0.0.1/scripts/release_check.py +191 -0
- graphfakos-0.0.1/setup.cfg +4 -0
- graphfakos-0.0.1/src/graphfakos/__init__.py +75 -0
- graphfakos-0.0.1/src/graphfakos/__main__.py +17 -0
- graphfakos-0.0.1/src/graphfakos/adapters/__init__.py +8 -0
- graphfakos-0.0.1/src/graphfakos/adapters/fixture.py +166 -0
- graphfakos-0.0.1/src/graphfakos/cli.py +152 -0
- graphfakos-0.0.1/src/graphfakos/contracts.py +35 -0
- graphfakos-0.0.1/src/graphfakos/models.py +304 -0
- graphfakos-0.0.1/src/graphfakos/provider.py +96 -0
- graphfakos-0.0.1/src/graphfakos/py.typed +1 -0
- graphfakos-0.0.1/src/graphfakos/render.py +12 -0
- graphfakos-0.0.1/src/graphfakos/server.py +102 -0
- graphfakos-0.0.1/src/graphfakos/static.py +43 -0
- graphfakos-0.0.1/src/graphfakos/testing/__init__.py +7 -0
- graphfakos-0.0.1/src/graphfakos/testing/assertions.py +25 -0
- graphfakos-0.0.1/src/graphfakos/ui/__init__.py +9 -0
- graphfakos-0.0.1/src/graphfakos/ui/app.py +1280 -0
- graphfakos-0.0.1/src/graphfakos.egg-info/SOURCES.txt +40 -0
- graphfakos-0.0.1/tests/test_cli.py +79 -0
- graphfakos-0.0.1/tests/test_fixture_adapter.py +12 -0
- graphfakos-0.0.1/tests/test_imports.py +88 -0
- graphfakos-0.0.1/tests/test_local_preview_server.py +41 -0
- graphfakos-0.0.1/tests/test_provider_contract.py +205 -0
- graphfakos-0.0.1/tests/test_release_check.py +18 -0
- graphfakos-0.0.1/tests/test_render_static_html.py +95 -0
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
# GraphFakos API Compatibility
|
|
2
|
+
|
|
3
|
+
GraphFakos is a `0.0.1` semantic-alpha package. Public APIs are intentionally
|
|
4
|
+
small and centered on provider-neutral graph viewing.
|
|
5
|
+
|
|
6
|
+
## Stable Import Roots
|
|
7
|
+
|
|
8
|
+
- `graphfakos`
|
|
9
|
+
- `graphfakos.adapters`
|
|
10
|
+
- `graphfakos.contracts`
|
|
11
|
+
- `graphfakos.models`
|
|
12
|
+
- `graphfakos.provider`
|
|
13
|
+
- `graphfakos.render`
|
|
14
|
+
- `graphfakos.server`
|
|
15
|
+
- `graphfakos.static`
|
|
16
|
+
- `graphfakos.testing`
|
|
17
|
+
- `graphfakos.ui`
|
|
18
|
+
|
|
19
|
+
## Compatibility Promise
|
|
20
|
+
|
|
21
|
+
GraphFakos keeps the following surfaces stable within the `0.0.x` line unless a
|
|
22
|
+
release note says otherwise:
|
|
23
|
+
|
|
24
|
+
- DTO class names
|
|
25
|
+
- provider protocol method names
|
|
26
|
+
- provider-neutral `diagnose_graph()` output shape
|
|
27
|
+
- `screen_manifest()` keys for `screen`, `label`, `route`, and `summary`
|
|
28
|
+
- console script names
|
|
29
|
+
- local preview server helper names
|
|
30
|
+
- screen manifest helper names
|
|
31
|
+
- testing assertion helper names
|
|
32
|
+
- PEP 561 type marker presence through `graphfakos/py.typed`
|
|
33
|
+
|
|
34
|
+
Provider-specific semantics are not part of GraphFakos core compatibility.
|
|
35
|
+
Sophiagraph, PragmaGraph, OpenMinion, and third-party providers own their own
|
|
36
|
+
semantic compatibility promises.
|
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
# Code of Conduct
|
|
2
|
+
|
|
3
|
+
## Our standard
|
|
4
|
+
|
|
5
|
+
We are committed to a respectful, constructive, and inclusive community.
|
|
6
|
+
|
|
7
|
+
Examples of expected behavior:
|
|
8
|
+
|
|
9
|
+
1. Be respectful and professional.
|
|
10
|
+
2. Assume good intent and discuss ideas, not people.
|
|
11
|
+
3. Give and receive feedback constructively.
|
|
12
|
+
4. Help keep discussions focused and collaborative.
|
|
13
|
+
|
|
14
|
+
Examples of unacceptable behavior:
|
|
15
|
+
|
|
16
|
+
1. Harassment, discrimination, or personal attacks.
|
|
17
|
+
2. Threatening, abusive, or hateful language.
|
|
18
|
+
3. Doxxing or sharing private information without consent.
|
|
19
|
+
4. Deliberate disruption, trolling, or bad-faith engagement.
|
|
20
|
+
|
|
21
|
+
## Scope
|
|
22
|
+
|
|
23
|
+
This Code of Conduct applies in project spaces (issues, PRs, discussions, chat,
|
|
24
|
+
and reviews).
|
|
25
|
+
|
|
26
|
+
## Enforcement
|
|
27
|
+
|
|
28
|
+
Maintainers are responsible for enforcing this Code of Conduct and may remove,
|
|
29
|
+
edit, or reject content or contributions that violate it.
|
|
30
|
+
|
|
31
|
+
Possible actions include:
|
|
32
|
+
|
|
33
|
+
1. Warning
|
|
34
|
+
2. Temporary restriction
|
|
35
|
+
3. Permanent ban from project spaces
|
|
36
|
+
|
|
37
|
+
## Reporting
|
|
38
|
+
|
|
39
|
+
Report concerns to maintainers through the project's private contact method or
|
|
40
|
+
by asking maintainers for a private channel.
|
|
41
|
+
|
|
42
|
+
## Attribution
|
|
43
|
+
|
|
44
|
+
This policy is inspired by common open source community standards and adapted
|
|
45
|
+
for this project.
|
|
@@ -0,0 +1,93 @@
|
|
|
1
|
+
# GraphFakos Code Quality and Hygiene
|
|
2
|
+
|
|
3
|
+
This is the public contributor version of the package's code-quality rules.
|
|
4
|
+
|
|
5
|
+
The short version:
|
|
6
|
+
|
|
7
|
+
1. keep provider-neutral contracts typed and explicit,
|
|
8
|
+
2. keep package boundaries honest,
|
|
9
|
+
3. keep runtime behavior structural rather than speculative,
|
|
10
|
+
4. keep comments minimal,
|
|
11
|
+
5. and prove the change with validation.
|
|
12
|
+
|
|
13
|
+
## 1. Prefer One Truthful Owner
|
|
14
|
+
|
|
15
|
+
Use the nearest clear owner:
|
|
16
|
+
|
|
17
|
+
1. DTOs in `models.py`,
|
|
18
|
+
2. provider protocol and validation in `provider.py`,
|
|
19
|
+
3. rendering entrypoints in `render.py`, `static.py`, and `ui/`,
|
|
20
|
+
4. local preview serving in `server.py`,
|
|
21
|
+
5. reusable test assertions in `testing/`,
|
|
22
|
+
6. fixture/demo providers in `adapters/`.
|
|
23
|
+
|
|
24
|
+
Avoid duplicate viewer shells, repeated magic literals, and wrappers that only
|
|
25
|
+
rename another helper.
|
|
26
|
+
|
|
27
|
+
## 2. Keep Runtime Behavior Structural
|
|
28
|
+
|
|
29
|
+
GraphFakos owns graph display and interaction. It does not decide whether a
|
|
30
|
+
memory, source item, claim, citation, or provider payload is true.
|
|
31
|
+
|
|
32
|
+
Prefer:
|
|
33
|
+
|
|
34
|
+
1. typed fields,
|
|
35
|
+
2. explicit provider capabilities,
|
|
36
|
+
3. deterministic static export,
|
|
37
|
+
4. clear adapter boundaries.
|
|
38
|
+
|
|
39
|
+
Avoid:
|
|
40
|
+
|
|
41
|
+
1. hidden Sophiagraph or PragmaGraph assumptions,
|
|
42
|
+
2. hidden OpenMinion runtime imports,
|
|
43
|
+
3. lossy fact extraction or semantic inference in the viewer package.
|
|
44
|
+
|
|
45
|
+
## 3. Keep Names and Layout Honest
|
|
46
|
+
|
|
47
|
+
Rules:
|
|
48
|
+
|
|
49
|
+
1. remove stale names instead of letting them linger,
|
|
50
|
+
2. keep files in the package area that truthfully owns them,
|
|
51
|
+
3. do not grow generic junk-drawer files like `utils.py`,
|
|
52
|
+
4. keep provider-specific mapping in provider packages or fixture adapters.
|
|
53
|
+
|
|
54
|
+
## 4. Keep Public Docs Portable
|
|
55
|
+
|
|
56
|
+
Do not add:
|
|
57
|
+
|
|
58
|
+
1. machine-local absolute paths,
|
|
59
|
+
2. private workstation assumptions,
|
|
60
|
+
3. internal tracker-state wording as public package documentation.
|
|
61
|
+
|
|
62
|
+
## 5. Keep Changes Focused
|
|
63
|
+
|
|
64
|
+
Good practice:
|
|
65
|
+
|
|
66
|
+
1. one clear purpose per PR,
|
|
67
|
+
2. update tests near the change,
|
|
68
|
+
3. avoid unrelated refactors in the same patch.
|
|
69
|
+
|
|
70
|
+
## 6. Validate Before Calling Work Done
|
|
71
|
+
|
|
72
|
+
Before closing work, run the package gates from `graphfakos/`:
|
|
73
|
+
|
|
74
|
+
```bash
|
|
75
|
+
make check
|
|
76
|
+
```
|
|
77
|
+
|
|
78
|
+
If your change affects packaging or public release shape, also run:
|
|
79
|
+
|
|
80
|
+
```bash
|
|
81
|
+
make release-check
|
|
82
|
+
```
|
|
83
|
+
|
|
84
|
+
Use `make lint` or `make test` directly only when you need a narrower loop
|
|
85
|
+
while iterating.
|
|
86
|
+
|
|
87
|
+
## 7. When in Doubt, Choose Clarity
|
|
88
|
+
|
|
89
|
+
The package prefers:
|
|
90
|
+
|
|
91
|
+
1. explicit owners over convenience,
|
|
92
|
+
2. provider-neutral contracts over package-specific shortcuts,
|
|
93
|
+
3. maintainable structure over short-term shortcuts.
|
|
@@ -0,0 +1,149 @@
|
|
|
1
|
+
# Contributing to GraphFakos
|
|
2
|
+
|
|
3
|
+
Thanks for contributing.
|
|
4
|
+
|
|
5
|
+
## Before Coding
|
|
6
|
+
|
|
7
|
+
Read these docs before coding:
|
|
8
|
+
|
|
9
|
+
1. [README.md](./README.md)
|
|
10
|
+
2. [API_COMPATIBILITY.md](./API_COMPATIBILITY.md)
|
|
11
|
+
3. [docs/README.md](./docs/README.md)
|
|
12
|
+
4. [docs/source-tree-owner-map.md](./docs/source-tree-owner-map.md)
|
|
13
|
+
5. [RELEASING.md](./RELEASING.md) when the work affects packaging or release
|
|
14
|
+
behavior
|
|
15
|
+
|
|
16
|
+
Treat the package README and API compatibility policy as the stable public
|
|
17
|
+
contract. GraphFakos is a viewer and adapter-contract package, not a memory
|
|
18
|
+
store, source ingester, graph builder, or runtime policy engine.
|
|
19
|
+
|
|
20
|
+
## Quick Start
|
|
21
|
+
|
|
22
|
+
1. Fork and create a branch.
|
|
23
|
+
2. Make focused changes.
|
|
24
|
+
3. Add or update tests.
|
|
25
|
+
4. Open a PR with a clear summary.
|
|
26
|
+
|
|
27
|
+
## Repository Layout
|
|
28
|
+
|
|
29
|
+
```text
|
|
30
|
+
graphfakos/
|
|
31
|
+
├── src/graphfakos/ # public package shipped on PyPI
|
|
32
|
+
│ ├── adapters/ # fixture and example providers
|
|
33
|
+
│ ├── testing/ # reusable viewer assertions
|
|
34
|
+
│ ├── ui/ # dependency-free graph viewer rendering
|
|
35
|
+
│ ├── contracts.py # public adapter/DTO contract exports
|
|
36
|
+
│ ├── models.py # provider-neutral DTOs
|
|
37
|
+
│ ├── provider.py # provider protocol and validation helpers
|
|
38
|
+
│ ├── render.py # public rendering exports
|
|
39
|
+
│ ├── server.py # local preview server primitives
|
|
40
|
+
│ └── static.py # static HTML export helpers
|
|
41
|
+
├── tests/ # package tests and contract fixtures
|
|
42
|
+
├── docs/ # public package-local docs
|
|
43
|
+
├── pyproject.toml
|
|
44
|
+
└── scripts/release_check.py # package release smoke
|
|
45
|
+
```
|
|
46
|
+
|
|
47
|
+
The public wheel is everything under `src/graphfakos/`. Tests, package docs,
|
|
48
|
+
and release tooling support the package but do not enlarge the runtime API
|
|
49
|
+
beyond `README.md`, `API_COMPATIBILITY.md`, and `docs/`.
|
|
50
|
+
|
|
51
|
+
## Setup
|
|
52
|
+
|
|
53
|
+
Requires Python 3.11+.
|
|
54
|
+
|
|
55
|
+
```bash
|
|
56
|
+
# 1. Clone and enter the repo
|
|
57
|
+
git clone https://github.com/openminion/graphfakos.git graphfakos
|
|
58
|
+
cd graphfakos
|
|
59
|
+
|
|
60
|
+
# 2. Create and activate a virtualenv
|
|
61
|
+
python3.11 -m venv .venv
|
|
62
|
+
source .venv/bin/activate
|
|
63
|
+
|
|
64
|
+
# 3. Install in editable mode with dev extras
|
|
65
|
+
make dev-install
|
|
66
|
+
```
|
|
67
|
+
|
|
68
|
+
## Running Tests
|
|
69
|
+
|
|
70
|
+
```bash
|
|
71
|
+
# Full package test suite
|
|
72
|
+
make test
|
|
73
|
+
|
|
74
|
+
# Full local quality gate
|
|
75
|
+
make check
|
|
76
|
+
|
|
77
|
+
# Release/install smoke
|
|
78
|
+
make release-check
|
|
79
|
+
```
|
|
80
|
+
|
|
81
|
+
If you need a narrower loop while iterating, run `python3.11 -m pytest -q
|
|
82
|
+
tests/<target>` inside the activated virtualenv.
|
|
83
|
+
|
|
84
|
+
## Running Lint and Formatting
|
|
85
|
+
|
|
86
|
+
```bash
|
|
87
|
+
# Lint only
|
|
88
|
+
make lint
|
|
89
|
+
|
|
90
|
+
# Check formatting without rewriting files
|
|
91
|
+
make format-check
|
|
92
|
+
|
|
93
|
+
# Apply formatting and autofixes
|
|
94
|
+
make fix
|
|
95
|
+
```
|
|
96
|
+
|
|
97
|
+
## Development Basics
|
|
98
|
+
|
|
99
|
+
1. Follow the existing typed, deterministic package style.
|
|
100
|
+
2. Keep provider-specific graph semantics outside GraphFakos core.
|
|
101
|
+
3. Add or update tests for any behavior change.
|
|
102
|
+
4. Keep static export working as the baseline viewer mode.
|
|
103
|
+
5. Do not add hidden imports from Sophiagraph, PragmaGraph, or OpenMinion.
|
|
104
|
+
6. Do not bundle unrelated refactors into the same PR.
|
|
105
|
+
7. Keep public docs portable and copy/paste friendly.
|
|
106
|
+
|
|
107
|
+
Preferred PR shape:
|
|
108
|
+
|
|
109
|
+
1. `Title`
|
|
110
|
+
- short and literal, for example `Add path controls to graph viewer`
|
|
111
|
+
2. `Description`
|
|
112
|
+
- `- add ...`
|
|
113
|
+
- `- align ...`
|
|
114
|
+
- `- polish ...`
|
|
115
|
+
3. `Validation`
|
|
116
|
+
- `- <command>`
|
|
117
|
+
- `- <command>`
|
|
118
|
+
|
|
119
|
+
## Submitting a Pull Request
|
|
120
|
+
|
|
121
|
+
1. Fork and create a branch from `main`.
|
|
122
|
+
2. Make your change; add or update tests; run the relevant local validation.
|
|
123
|
+
3. Open a PR with a clear summary. In the description, include what changed,
|
|
124
|
+
why, and the exact commands you ran for validation.
|
|
125
|
+
4. Keep PRs small and reviewable.
|
|
126
|
+
5. Do not bundle unrelated refactors into the same PR.
|
|
127
|
+
|
|
128
|
+
## Legal Basics
|
|
129
|
+
|
|
130
|
+
1. You keep ownership of your contributions.
|
|
131
|
+
2. By submitting a contribution, you license it under Apache-2.0.
|
|
132
|
+
3. Apache-2.0 includes a patent license for your contribution, with the standard
|
|
133
|
+
patent-termination condition in the license text.
|
|
134
|
+
4. Only submit code or content you have the right to contribute.
|
|
135
|
+
5. Do not add third-party code or assets unless their license is compatible and
|
|
136
|
+
clearly documented.
|
|
137
|
+
6. Project names and logos are not granted for endorsement use.
|
|
138
|
+
7. `graphfakos` is provided on an "as is" basis under the project license.
|
|
139
|
+
8. See [LICENSE](./LICENSE) for the full legal terms, disclaimers, and
|
|
140
|
+
limitations of liability.
|
|
141
|
+
|
|
142
|
+
## Security
|
|
143
|
+
|
|
144
|
+
If you find a security issue, do not open a public issue with exploit details.
|
|
145
|
+
Use the project security reporting process.
|
|
146
|
+
|
|
147
|
+
## Code of Conduct
|
|
148
|
+
|
|
149
|
+
By participating, you agree to follow [CODE_OF_CONDUCT.md](./CODE_OF_CONDUCT.md).
|
graphfakos-0.0.1/LICENSE
ADDED
|
@@ -0,0 +1,201 @@
|
|
|
1
|
+
Apache License
|
|
2
|
+
Version 2.0, January 2004
|
|
3
|
+
http://www.apache.org/licenses/
|
|
4
|
+
|
|
5
|
+
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
|
6
|
+
|
|
7
|
+
1. Definitions.
|
|
8
|
+
|
|
9
|
+
"License" shall mean the terms and conditions for use, reproduction,
|
|
10
|
+
and distribution as defined by Sections 1 through 9 of this document.
|
|
11
|
+
|
|
12
|
+
"Licensor" shall mean the copyright owner or entity authorized by
|
|
13
|
+
the copyright owner that is granting the License.
|
|
14
|
+
|
|
15
|
+
"Legal Entity" shall mean the union of the acting entity and all
|
|
16
|
+
other entities that control, are controlled by, or are under common
|
|
17
|
+
control with that entity. For the purposes of this definition,
|
|
18
|
+
"control" means (i) the power, direct or indirect, to cause the
|
|
19
|
+
direction or management of such entity, whether by contract or
|
|
20
|
+
otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
|
21
|
+
outstanding shares, or (iii) beneficial ownership of such entity.
|
|
22
|
+
|
|
23
|
+
"You" (or "Your") shall mean an individual or Legal Entity
|
|
24
|
+
exercising permissions granted by this License.
|
|
25
|
+
|
|
26
|
+
"Source" form shall mean the preferred form for making modifications,
|
|
27
|
+
including but not limited to software source code, documentation
|
|
28
|
+
source, and configuration files.
|
|
29
|
+
|
|
30
|
+
"Object" form shall mean any form resulting from mechanical
|
|
31
|
+
transformation or translation of a Source form, including but
|
|
32
|
+
not limited to compiled object code, generated documentation,
|
|
33
|
+
and conversions to other media types.
|
|
34
|
+
|
|
35
|
+
"Work" shall mean the work of authorship, whether in Source or
|
|
36
|
+
Object form, made available under the License, as indicated by a
|
|
37
|
+
copyright notice that is included in or attached to the work
|
|
38
|
+
(an example is provided in the Appendix below).
|
|
39
|
+
|
|
40
|
+
"Derivative Works" shall mean any work, whether in Source or Object
|
|
41
|
+
form, that is based on (or derived from) the Work and for which the
|
|
42
|
+
editorial revisions, annotations, elaborations, or other modifications
|
|
43
|
+
represent, as a whole, an original work of authorship. For the purposes
|
|
44
|
+
of this License, Derivative Works shall not include works that remain
|
|
45
|
+
separable from, or merely link (or bind by name) to the interfaces of,
|
|
46
|
+
the Work and Derivative Works thereof.
|
|
47
|
+
|
|
48
|
+
"Contribution" shall mean any work of authorship, including
|
|
49
|
+
the original version of the Work and any modifications or additions
|
|
50
|
+
to that Work or Derivative Works thereof, that is intentionally
|
|
51
|
+
submitted to Licensor for inclusion in the Work by the copyright owner
|
|
52
|
+
or by an individual or Legal Entity authorized to submit on behalf of
|
|
53
|
+
the copyright owner. For the purposes of this definition, "submitted"
|
|
54
|
+
means any form of electronic, verbal, or written communication sent
|
|
55
|
+
to the Licensor or its representatives, including but not limited to
|
|
56
|
+
communication on electronic mailing lists, source code control systems,
|
|
57
|
+
and issue tracking systems that are managed by, or on behalf of, the
|
|
58
|
+
Licensor for the purpose of discussing and improving the Work, but
|
|
59
|
+
excluding communication that is conspicuously marked or otherwise
|
|
60
|
+
designated in writing by the copyright owner as "Not a Contribution."
|
|
61
|
+
|
|
62
|
+
"Contributor" shall mean Licensor and any individual or Legal Entity
|
|
63
|
+
on behalf of whom a Contribution has been received by Licensor and
|
|
64
|
+
subsequently incorporated within the Work.
|
|
65
|
+
|
|
66
|
+
2. Grant of Copyright License. Subject to the terms and conditions of
|
|
67
|
+
this License, each Contributor hereby grants to You a perpetual,
|
|
68
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
69
|
+
copyright license to reproduce, prepare Derivative Works of,
|
|
70
|
+
publicly display, publicly perform, sublicense, and distribute the
|
|
71
|
+
Work and such Derivative Works in Source or Object form.
|
|
72
|
+
|
|
73
|
+
3. Grant of Patent License. Subject to the terms and conditions of
|
|
74
|
+
this License, each Contributor hereby grants to You a perpetual,
|
|
75
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
76
|
+
(except as stated in this section) patent license to make, have made,
|
|
77
|
+
use, offer to sell, sell, import, and otherwise transfer the Work,
|
|
78
|
+
where such license applies only to those patent claims licensable
|
|
79
|
+
by such Contributor that are necessarily infringed by their
|
|
80
|
+
Contribution(s) alone or by combination of their Contribution(s)
|
|
81
|
+
with the Work to which such Contribution(s) was submitted. If You
|
|
82
|
+
institute patent litigation against any entity (including a
|
|
83
|
+
cross-claim or counterclaim in a lawsuit) alleging that the Work
|
|
84
|
+
or a Contribution incorporated within the Work constitutes direct
|
|
85
|
+
or contributory patent infringement, then any patent licenses
|
|
86
|
+
granted to You under this License for that Work shall terminate
|
|
87
|
+
as of the date such litigation is filed.
|
|
88
|
+
|
|
89
|
+
4. Redistribution. You may reproduce and distribute copies of the
|
|
90
|
+
Work or Derivative Works thereof in any medium, with or without
|
|
91
|
+
modifications, and in Source or Object form, provided that You
|
|
92
|
+
meet the following conditions:
|
|
93
|
+
|
|
94
|
+
(a) You must give any other recipients of the Work or
|
|
95
|
+
Derivative Works a copy of this License; and
|
|
96
|
+
|
|
97
|
+
(b) You must cause any modified files to carry prominent notices
|
|
98
|
+
stating that You changed the files; and
|
|
99
|
+
|
|
100
|
+
(c) You must retain, in the Source form of any Derivative Works
|
|
101
|
+
that You distribute, all copyright, patent, trademark, and
|
|
102
|
+
attribution notices from the Source form of the Work,
|
|
103
|
+
excluding those notices that do not pertain to any part of
|
|
104
|
+
the Derivative Works; and
|
|
105
|
+
|
|
106
|
+
(d) If the Work includes a "NOTICE" text file as part of its
|
|
107
|
+
distribution, then any Derivative Works that You distribute must
|
|
108
|
+
include a readable copy of the attribution notices contained
|
|
109
|
+
within such NOTICE file, excluding those notices that do not
|
|
110
|
+
pertain to any part of the Derivative Works, in at least one
|
|
111
|
+
of the following places: within a NOTICE text file distributed
|
|
112
|
+
as part of the Derivative Works; within the Source form or
|
|
113
|
+
documentation, if provided along with the Derivative Works; or,
|
|
114
|
+
within a display generated by the Derivative Works, if and
|
|
115
|
+
wherever such third-party notices normally appear. The contents
|
|
116
|
+
of the NOTICE file are for informational purposes only and
|
|
117
|
+
do not modify the License. You may add Your own attribution
|
|
118
|
+
notices within Derivative Works that You distribute, alongside
|
|
119
|
+
or as an addendum to the NOTICE text from the Work, provided
|
|
120
|
+
that such additional attribution notices cannot be construed
|
|
121
|
+
as modifying the License.
|
|
122
|
+
|
|
123
|
+
You may add Your own copyright statement to Your modifications and
|
|
124
|
+
may provide additional or different license terms and conditions
|
|
125
|
+
for use, reproduction, or distribution of Your modifications, or
|
|
126
|
+
for any such Derivative Works as a whole, provided Your use,
|
|
127
|
+
reproduction, and distribution of the Work otherwise complies with
|
|
128
|
+
the conditions stated in this License.
|
|
129
|
+
|
|
130
|
+
5. Submission of Contributions. Unless You explicitly state otherwise,
|
|
131
|
+
any Contribution intentionally submitted for inclusion in the Work
|
|
132
|
+
by You to the Licensor shall be under the terms and conditions of
|
|
133
|
+
this License, without any additional terms or conditions.
|
|
134
|
+
Notwithstanding the above, nothing herein shall supersede or modify
|
|
135
|
+
the terms of any separate license agreement you may have executed
|
|
136
|
+
with Licensor regarding such Contributions.
|
|
137
|
+
|
|
138
|
+
6. Trademarks. This License does not grant permission to use the trade
|
|
139
|
+
names, trademarks, service marks, or product names of the Licensor,
|
|
140
|
+
except as required for reasonable and customary use in describing the
|
|
141
|
+
origin of the Work and reproducing the content of the NOTICE file.
|
|
142
|
+
|
|
143
|
+
7. Disclaimer of Warranty. Unless required by applicable law or
|
|
144
|
+
agreed to in writing, Licensor provides the Work (and each
|
|
145
|
+
Contributor provides its Contributions) on an "AS IS" BASIS,
|
|
146
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
|
147
|
+
implied, including, without limitation, any warranties or conditions
|
|
148
|
+
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
|
|
149
|
+
PARTICULAR PURPOSE. You are solely responsible for determining the
|
|
150
|
+
appropriateness of using or redistributing the Work and assume any
|
|
151
|
+
risks associated with Your exercise of permissions under this License.
|
|
152
|
+
|
|
153
|
+
8. Limitation of Liability. In no event and under no legal theory,
|
|
154
|
+
whether in tort (including negligence), contract, or otherwise,
|
|
155
|
+
unless required by applicable law (such as deliberate and grossly
|
|
156
|
+
negligent acts) or agreed to in writing, shall any Contributor be
|
|
157
|
+
liable to You for damages, including any direct, indirect, special,
|
|
158
|
+
incidental, or consequential damages of any character arising as a
|
|
159
|
+
result of this License or out of the use or inability to use the
|
|
160
|
+
Work (including but not limited to damages for loss of goodwill,
|
|
161
|
+
work stoppage, computer failure or malfunction, or any and all
|
|
162
|
+
other commercial damages or losses), even if such Contributor
|
|
163
|
+
has been advised of the possibility of such damages.
|
|
164
|
+
|
|
165
|
+
9. Accepting Warranty or Additional Liability. While redistributing
|
|
166
|
+
the Work or Derivative Works thereof, You may choose to offer,
|
|
167
|
+
and charge a fee for, acceptance of support, warranty, indemnity,
|
|
168
|
+
or other liability obligations and/or rights consistent with this
|
|
169
|
+
License. However, in accepting such obligations, You may act only
|
|
170
|
+
on Your own behalf and on Your sole responsibility, not on behalf
|
|
171
|
+
of any other Contributor, and only if You agree to indemnify,
|
|
172
|
+
defend, and hold each Contributor harmless for any liability
|
|
173
|
+
incurred by, or claims asserted against, such Contributor by reason
|
|
174
|
+
of your accepting any such warranty or additional liability.
|
|
175
|
+
|
|
176
|
+
END OF TERMS AND CONDITIONS
|
|
177
|
+
|
|
178
|
+
APPENDIX: How to apply the Apache License to your work.
|
|
179
|
+
|
|
180
|
+
To apply the Apache License to your work, attach the following
|
|
181
|
+
boilerplate notice, with the fields enclosed by brackets "[]"
|
|
182
|
+
replaced with your own identifying information. (Don't include
|
|
183
|
+
the brackets!) The text should be enclosed in the appropriate
|
|
184
|
+
comment syntax for the file format. We also recommend that a
|
|
185
|
+
file or class name and description of purpose be included on the
|
|
186
|
+
same "printed page" as the copyright notice for easier
|
|
187
|
+
identification within third-party archives.
|
|
188
|
+
|
|
189
|
+
Copyright [yyyy] [name of copyright owner]
|
|
190
|
+
|
|
191
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
|
192
|
+
you may not use this file except in compliance with the License.
|
|
193
|
+
You may obtain a copy of the License at
|
|
194
|
+
|
|
195
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
|
196
|
+
|
|
197
|
+
Unless required by applicable law or agreed to in writing, software
|
|
198
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
|
199
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
200
|
+
See the License for the specific language governing permissions and
|
|
201
|
+
limitations under the License.
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
include LICENSE
|
|
2
|
+
include NOTICE
|
|
3
|
+
include CODE_OF_CONDUCT.md
|
|
4
|
+
include CODE_QUALITY.md
|
|
5
|
+
include CONTRIBUTING.md
|
|
6
|
+
include SECURITY.md
|
|
7
|
+
include SUPPORT.md
|
|
8
|
+
recursive-include scripts *.py
|
|
9
|
+
recursive-include docs *.md
|
|
10
|
+
include API_COMPATIBILITY.md
|
|
11
|
+
include README.md
|
|
12
|
+
include RELEASING.md
|
|
13
|
+
include src/graphfakos/py.typed
|
|
14
|
+
recursive-exclude * __pycache__ *.py[cod]
|
|
15
|
+
prune src/*.egg-info
|
graphfakos-0.0.1/NOTICE
ADDED
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
GraphFakos
|
|
2
|
+
Copyright 2026 GraphFakos Contributors
|
|
3
|
+
|
|
4
|
+
This product includes software developed by GraphFakos contributors.
|
|
5
|
+
|
|
6
|
+
Source code is licensed under the Apache License, Version 2.0. The software
|
|
7
|
+
license grants copyright permissions only; it does not grant any right to use
|
|
8
|
+
OpenMinion, Sophiagraph, PragmaGraph, GraphFakos, or related names, logos,
|
|
9
|
+
branding, website identity, or social identity except as required for truthful
|
|
10
|
+
and customary attribution.
|
|
11
|
+
|
|
12
|
+
Forks, clones, and derivative distributions must not state or imply that they
|
|
13
|
+
are the official GraphFakos project or otherwise affiliated with, endorsed by,
|
|
14
|
+
or maintained by GraphFakos, Sophiagraph, PragmaGraph, or OpenMinion
|
|
15
|
+
contributors unless they actually are.
|
|
16
|
+
|
|
17
|
+
GraphFakos and related package identities have no official token, coin, NFT,
|
|
18
|
+
airdrop, staking program, treasury product, or investment offering. Any use of
|
|
19
|
+
these identities to market or imply a crypto asset, fundraising scheme, or
|
|
20
|
+
investment opportunity is unauthorized and should be treated as a scam.
|