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 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)
@@ -0,0 +1,10 @@
1
+ # getflex
2
+
3
+ FlexGraph CLI — knowledge operating system.
4
+
5
+ ```
6
+ pip install getflex
7
+ flex init
8
+ ```
9
+
10
+ Coming soon at [flexgraph.dev](https://flexgraph.dev)
File without changes
@@ -0,0 +1,2 @@
1
+ def main():
2
+ print("FlexGraph — https://flexgraph.dev")
@@ -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,9 @@
1
+ README.md
2
+ pyproject.toml
3
+ getflex/__init__.py
4
+ getflex/cli.py
5
+ getflex.egg-info/PKG-INFO
6
+ getflex.egg-info/SOURCES.txt
7
+ getflex.egg-info/dependency_links.txt
8
+ getflex.egg-info/entry_points.txt
9
+ getflex.egg-info/top_level.txt
@@ -0,0 +1,2 @@
1
+ [console_scripts]
2
+ flex = getflex.cli:main
@@ -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"
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+