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.
- oaknut_disc-10.0.1/PKG-INFO +23 -0
- oaknut_disc-10.0.1/pyproject.toml +41 -0
- oaknut_disc-10.0.1/setup.cfg +4 -0
- oaknut_disc-10.0.1/src/oaknut/disc/__init__.py +3 -0
- oaknut_disc-10.0.1/src/oaknut/disc/cli.py +1717 -0
- oaknut_disc-10.0.1/src/oaknut/disc/cli_paths.py +176 -0
- oaknut_disc-10.0.1/src/oaknut_disc.egg-info/PKG-INFO +23 -0
- oaknut_disc-10.0.1/src/oaknut_disc.egg-info/SOURCES.txt +12 -0
- oaknut_disc-10.0.1/src/oaknut_disc.egg-info/dependency_links.txt +1 -0
- oaknut_disc-10.0.1/src/oaknut_disc.egg-info/entry_points.txt +3 -0
- oaknut_disc-10.0.1/src/oaknut_disc.egg-info/requires.txt +6 -0
- oaknut_disc-10.0.1/src/oaknut_disc.egg-info/top_level.txt +1 -0
- oaknut_disc-10.0.1/tests/test_cli.py +803 -0
- oaknut_disc-10.0.1/tests/test_cli_paths.py +212 -0
|
@@ -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"]
|