oaknut-disc 10.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,23 @@
1
+ Metadata-Version: 2.4
2
+ Name: oaknut-disc
3
+ Version: 10.0.1
4
+ Summary: CLI for working with Acorn DFS, ADFS, and AFS disc images.
5
+ Author-email: Robert Smallshire <robert@smallshire.org.uk>
6
+ License-Expression: MIT
7
+ Classifier: Development Status :: 3 - Alpha
8
+ Classifier: Environment :: Console
9
+ Classifier: Intended Audience :: Developers
10
+ Classifier: Operating System :: OS Independent
11
+ Classifier: Programming Language :: Python
12
+ Classifier: Programming Language :: Python :: 3
13
+ Classifier: Programming Language :: Python :: 3 :: Only
14
+ Classifier: Programming Language :: Python :: 3.11
15
+ Classifier: Programming Language :: Python :: 3.12
16
+ Classifier: Programming Language :: Python :: 3.13
17
+ Requires-Python: >=3.11
18
+ Requires-Dist: oaknut-file>=10.0
19
+ Requires-Dist: oaknut-dfs>=10.0
20
+ Requires-Dist: oaknut-adfs>=10.0
21
+ Requires-Dist: oaknut-afs>=10.0
22
+ Requires-Dist: click>=8.1.7
23
+ Requires-Dist: rich>=13.0
@@ -0,0 +1,41 @@
1
+ [build-system]
2
+ requires = ["setuptools"]
3
+ build-backend = "setuptools.build_meta"
4
+
5
+ [project]
6
+ name = "oaknut-disc"
7
+ requires-python = ">= 3.11"
8
+ dynamic = ["version"]
9
+ description = "CLI for working with Acorn DFS, ADFS, and AFS disc images."
10
+ license = "MIT"
11
+ authors = [{ name = "Robert Smallshire", email = "robert@smallshire.org.uk" }]
12
+ classifiers = [
13
+ "Development Status :: 3 - Alpha",
14
+ "Environment :: Console",
15
+ "Intended Audience :: Developers",
16
+ "Operating System :: OS Independent",
17
+ "Programming Language :: Python",
18
+ "Programming Language :: Python :: 3",
19
+ "Programming Language :: Python :: 3 :: Only",
20
+ "Programming Language :: Python :: 3.11",
21
+ "Programming Language :: Python :: 3.12",
22
+ "Programming Language :: Python :: 3.13",
23
+ ]
24
+ dependencies = [
25
+ "oaknut-file>=10.0",
26
+ "oaknut-dfs>=10.0",
27
+ "oaknut-adfs>=10.0",
28
+ "oaknut-afs>=10.0",
29
+ "click>=8.1.7",
30
+ "rich>=13.0",
31
+ ]
32
+
33
+ [project.scripts]
34
+ disc = "oaknut.disc.cli:cli"
35
+ oaknut-disc = "oaknut.disc.cli:cli"
36
+
37
+ [tool.setuptools.dynamic]
38
+ version = { attr = "oaknut.disc.__version__" }
39
+
40
+ [tool.setuptools.packages.find]
41
+ where = ["src"]
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+
@@ -0,0 +1,3 @@
1
+ """Unified CLI for Acorn DFS, ADFS, and AFS disc images."""
2
+
3
+ __version__ = "10.0.1"