postforge 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,16 @@
1
+ Metadata-Version: 2.4
2
+ Name: postforge
3
+ Version: 0.0.1
4
+ Summary: A PostScript interpreter written in Python
5
+ Author-email: Scott Bowman <scott@bowmans.org>
6
+ License-Expression: AGPL-3.0-or-later
7
+ Project-URL: Homepage, https://github.com/AndyCappDev/postforge
8
+ Project-URL: Repository, https://github.com/AndyCappDev/postforge
9
+ Keywords: postscript,interpreter,pdf,svg,png,cairo,eps
10
+ Classifier: Development Status :: 1 - Planning
11
+ Classifier: Intended Audience :: Developers
12
+ Classifier: Operating System :: OS Independent
13
+ Classifier: Programming Language :: Python :: 3
14
+ Classifier: Topic :: Software Development :: Interpreters
15
+ Classifier: Topic :: Multimedia :: Graphics
16
+ Requires-Python: >=3.13
@@ -0,0 +1,7 @@
1
+ # PostForge
2
+
3
+ A PostScript interpreter written in Python.
4
+
5
+ **This is a placeholder release to reserve the package name.** The full package is under active development.
6
+
7
+ See the [GitHub repository](https://github.com/AndyCappDev/postforge) for details.
@@ -0,0 +1,2 @@
1
+ # PostForge - A PostScript Interpreter
2
+ # Full release coming soon. See https://github.com/AndyCappDev/postforge
@@ -0,0 +1,16 @@
1
+ Metadata-Version: 2.4
2
+ Name: postforge
3
+ Version: 0.0.1
4
+ Summary: A PostScript interpreter written in Python
5
+ Author-email: Scott Bowman <scott@bowmans.org>
6
+ License-Expression: AGPL-3.0-or-later
7
+ Project-URL: Homepage, https://github.com/AndyCappDev/postforge
8
+ Project-URL: Repository, https://github.com/AndyCappDev/postforge
9
+ Keywords: postscript,interpreter,pdf,svg,png,cairo,eps
10
+ Classifier: Development Status :: 1 - Planning
11
+ Classifier: Intended Audience :: Developers
12
+ Classifier: Operating System :: OS Independent
13
+ Classifier: Programming Language :: Python :: 3
14
+ Classifier: Topic :: Software Development :: Interpreters
15
+ Classifier: Topic :: Multimedia :: Graphics
16
+ Requires-Python: >=3.13
@@ -0,0 +1,7 @@
1
+ README.md
2
+ pyproject.toml
3
+ postforge/__init__.py
4
+ postforge.egg-info/PKG-INFO
5
+ postforge.egg-info/SOURCES.txt
6
+ postforge.egg-info/dependency_links.txt
7
+ postforge.egg-info/top_level.txt
@@ -0,0 +1 @@
1
+ postforge
@@ -0,0 +1,24 @@
1
+ [build-system]
2
+ requires = ["setuptools>=45", "wheel"]
3
+ build-backend = "setuptools.build_meta"
4
+
5
+ [project]
6
+ name = "postforge"
7
+ version = "0.0.1"
8
+ description = "A PostScript interpreter written in Python"
9
+ authors = [{name = "Scott Bowman", email = "scott@bowmans.org"}]
10
+ license = "AGPL-3.0-or-later"
11
+ requires-python = ">=3.13"
12
+ keywords = ["postscript", "interpreter", "pdf", "svg", "png", "cairo", "eps"]
13
+ classifiers = [
14
+ "Development Status :: 1 - Planning",
15
+ "Intended Audience :: Developers",
16
+ "Operating System :: OS Independent",
17
+ "Programming Language :: Python :: 3",
18
+ "Topic :: Software Development :: Interpreters",
19
+ "Topic :: Multimedia :: Graphics",
20
+ ]
21
+
22
+ [project.urls]
23
+ Homepage = "https://github.com/AndyCappDev/postforge"
24
+ Repository = "https://github.com/AndyCappDev/postforge"
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+