firstserial 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.
@@ -0,0 +1,29 @@
1
+ Metadata-Version: 2.5
2
+ Name: firstserial
3
+ Version: 0.0.1
4
+ Summary: Find character and plot continuity errors in a novel manuscript. Release pending.
5
+ Project-URL: Homepage, https://pypi.org/project/firstserial/
6
+ Project-URL: Source, https://github.com/BeyondITL/firstserial
7
+ Author: BeyondITL Inc.
8
+ License: MIT
9
+ Classifier: Development Status :: 1 - Planning
10
+ Classifier: License :: OSI Approved :: MIT License
11
+ Classifier: Programming Language :: Python :: 3
12
+ Requires-Python: >=3.10
13
+ Description-Content-Type: text/markdown
14
+
15
+ # firstserial
16
+
17
+ This name is the home of the continuity scanner; the first working release is still to come.
18
+
19
+ **Install the real package:**
20
+
21
+ ```bash
22
+ uv tool install firstserial # or: pipx install firstserial
23
+ ```
24
+
25
+ `firstserial` reads a novel manuscript and reports continuity errors — dead
26
+ characters who keep talking, injuries that heal off-page, setups never
27
+ paid off.
28
+
29
+ Source: https://github.com/BeyondITL/firstserial
@@ -0,0 +1,15 @@
1
+ # firstserial
2
+
3
+ This name is the home of the continuity scanner; the first working release is still to come.
4
+
5
+ **Install the real package:**
6
+
7
+ ```bash
8
+ uv tool install firstserial # or: pipx install firstserial
9
+ ```
10
+
11
+ `firstserial` reads a novel manuscript and reports continuity errors — dead
12
+ characters who keep talking, injuries that heal off-page, setups never
13
+ paid off.
14
+
15
+ Source: https://github.com/BeyondITL/firstserial
@@ -0,0 +1,3 @@
1
+ """Placeholder. The tool is published as `firstserial`."""
2
+
3
+ __version__ = "0.0.1"
@@ -0,0 +1,24 @@
1
+ [project]
2
+ name = "firstserial"
3
+ version = "0.0.1"
4
+ description = "Find character and plot continuity errors in a novel manuscript. Release pending."
5
+ readme = "README.md"
6
+ requires-python = ">=3.10"
7
+ license = { text = "MIT" }
8
+ authors = [{ name = "BeyondITL Inc." }]
9
+ classifiers = [
10
+ "Development Status :: 1 - Planning",
11
+ "License :: OSI Approved :: MIT License",
12
+ "Programming Language :: Python :: 3",
13
+ ]
14
+
15
+ [project.urls]
16
+ Homepage = "https://pypi.org/project/firstserial/"
17
+ Source = "https://github.com/BeyondITL/firstserial"
18
+
19
+ [build-system]
20
+ requires = ["hatchling"]
21
+ build-backend = "hatchling.build"
22
+
23
+ [tool.hatch.build.targets.wheel]
24
+ packages = ["firstserial"]