paces 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.
paces-0.0.1/PKG-INFO ADDED
@@ -0,0 +1,19 @@
1
+ Metadata-Version: 2.4
2
+ Name: paces
3
+ Version: 0.0.1
4
+ Summary: Turn instructional media into structured, interactive learning material
5
+ Author: Thor Whalen
6
+ License-Expression: MIT
7
+ Project-URL: Homepage, https://github.com/thorwhalen/paces
8
+ Requires-Python: >=3.10
9
+ Description-Content-Type: text/markdown
10
+
11
+ # paces
12
+
13
+ Turn instructional media — a video of someone teaching something, plus optional
14
+ notes and a steering prompt — into structured, interactive learning material.
15
+
16
+ Segment the media into named steps, build a structured intermediate
17
+ representation, and render it into practice pages and guides.
18
+
19
+ Under active development; this release reserves the name.
paces-0.0.1/README.md ADDED
@@ -0,0 +1,9 @@
1
+ # paces
2
+
3
+ Turn instructional media — a video of someone teaching something, plus optional
4
+ notes and a steering prompt — into structured, interactive learning material.
5
+
6
+ Segment the media into named steps, build a structured intermediate
7
+ representation, and render it into practice pages and guides.
8
+
9
+ Under active development; this release reserves the name.
@@ -0,0 +1,3 @@
1
+ """Turn instructional media into structured, interactive learning material."""
2
+
3
+ __version__ = "0.0.1"
@@ -0,0 +1,19 @@
1
+ Metadata-Version: 2.4
2
+ Name: paces
3
+ Version: 0.0.1
4
+ Summary: Turn instructional media into structured, interactive learning material
5
+ Author: Thor Whalen
6
+ License-Expression: MIT
7
+ Project-URL: Homepage, https://github.com/thorwhalen/paces
8
+ Requires-Python: >=3.10
9
+ Description-Content-Type: text/markdown
10
+
11
+ # paces
12
+
13
+ Turn instructional media — a video of someone teaching something, plus optional
14
+ notes and a steering prompt — into structured, interactive learning material.
15
+
16
+ Segment the media into named steps, build a structured intermediate
17
+ representation, and render it into practice pages and guides.
18
+
19
+ Under active development; this release reserves the name.
@@ -0,0 +1,7 @@
1
+ README.md
2
+ pyproject.toml
3
+ paces/__init__.py
4
+ paces.egg-info/PKG-INFO
5
+ paces.egg-info/SOURCES.txt
6
+ paces.egg-info/dependency_links.txt
7
+ paces.egg-info/top_level.txt
@@ -0,0 +1 @@
1
+ paces
@@ -0,0 +1,18 @@
1
+ [build-system]
2
+ requires = ["setuptools>=68"]
3
+ build-backend = "setuptools.build_meta"
4
+
5
+ [project]
6
+ name = "paces"
7
+ version = "0.0.1"
8
+ description = "Turn instructional media into structured, interactive learning material"
9
+ readme = "README.md"
10
+ license = "MIT"
11
+ requires-python = ">=3.10"
12
+ authors = [{ name = "Thor Whalen" }]
13
+
14
+ [project.urls]
15
+ Homepage = "https://github.com/thorwhalen/paces"
16
+
17
+ [tool.setuptools]
18
+ packages = ["paces"]
paces-0.0.1/setup.cfg ADDED
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+