getflex 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.
- getflex-0.1.0/PKG-INFO +19 -0
- getflex-0.1.0/README.md +10 -0
- getflex-0.1.0/getflex/__init__.py +0 -0
- getflex-0.1.0/getflex/cli.py +2 -0
- getflex-0.1.0/getflex.egg-info/PKG-INFO +19 -0
- getflex-0.1.0/getflex.egg-info/SOURCES.txt +9 -0
- getflex-0.1.0/getflex.egg-info/dependency_links.txt +1 -0
- getflex-0.1.0/getflex.egg-info/entry_points.txt +2 -0
- getflex-0.1.0/getflex.egg-info/top_level.txt +1 -0
- getflex-0.1.0/pyproject.toml +17 -0
- getflex-0.1.0/setup.cfg +4 -0
getflex-0.1.0/PKG-INFO
ADDED
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: getflex
|
|
3
|
+
Version: 0.1.0
|
|
4
|
+
Summary: FlexGraph CLI — knowledge operating system
|
|
5
|
+
License: MIT
|
|
6
|
+
Project-URL: Homepage, https://flexgraph.dev
|
|
7
|
+
Requires-Python: >=3.10
|
|
8
|
+
Description-Content-Type: text/markdown
|
|
9
|
+
|
|
10
|
+
# getflex
|
|
11
|
+
|
|
12
|
+
FlexGraph CLI — knowledge operating system.
|
|
13
|
+
|
|
14
|
+
```
|
|
15
|
+
pip install getflex
|
|
16
|
+
flex init
|
|
17
|
+
```
|
|
18
|
+
|
|
19
|
+
Coming soon at [flexgraph.dev](https://flexgraph.dev)
|
getflex-0.1.0/README.md
ADDED
|
File without changes
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: getflex
|
|
3
|
+
Version: 0.1.0
|
|
4
|
+
Summary: FlexGraph CLI — knowledge operating system
|
|
5
|
+
License: MIT
|
|
6
|
+
Project-URL: Homepage, https://flexgraph.dev
|
|
7
|
+
Requires-Python: >=3.10
|
|
8
|
+
Description-Content-Type: text/markdown
|
|
9
|
+
|
|
10
|
+
# getflex
|
|
11
|
+
|
|
12
|
+
FlexGraph CLI — knowledge operating system.
|
|
13
|
+
|
|
14
|
+
```
|
|
15
|
+
pip install getflex
|
|
16
|
+
flex init
|
|
17
|
+
```
|
|
18
|
+
|
|
19
|
+
Coming soon at [flexgraph.dev](https://flexgraph.dev)
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
getflex
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["setuptools>=61.0"]
|
|
3
|
+
build-backend = "setuptools.build_meta"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "getflex"
|
|
7
|
+
version = "0.1.0"
|
|
8
|
+
description = "FlexGraph CLI — knowledge operating system"
|
|
9
|
+
readme = "README.md"
|
|
10
|
+
license = {text = "MIT"}
|
|
11
|
+
requires-python = ">=3.10"
|
|
12
|
+
|
|
13
|
+
[project.urls]
|
|
14
|
+
Homepage = "https://flexgraph.dev"
|
|
15
|
+
|
|
16
|
+
[project.scripts]
|
|
17
|
+
flex = "getflex.cli:main"
|
getflex-0.1.0/setup.cfg
ADDED