boxarrow 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.
- boxarrow-0.0.1/PKG-INFO +16 -0
- boxarrow-0.0.1/README.md +3 -0
- boxarrow-0.0.1/pyproject.toml +22 -0
- boxarrow-0.0.1/setup.cfg +4 -0
- boxarrow-0.0.1/src/boxarrow/__init__.py +1 -0
- boxarrow-0.0.1/src/boxarrow.egg-info/PKG-INFO +16 -0
- boxarrow-0.0.1/src/boxarrow.egg-info/SOURCES.txt +7 -0
- boxarrow-0.0.1/src/boxarrow.egg-info/dependency_links.txt +1 -0
- boxarrow-0.0.1/src/boxarrow.egg-info/top_level.txt +1 -0
boxarrow-0.0.1/PKG-INFO
ADDED
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: boxarrow
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: Declarative box-and-arrow diagrams for documents
|
|
5
|
+
Author-email: Mohammad <boxarrow.dev@gmail.com>
|
|
6
|
+
License-Expression: MIT
|
|
7
|
+
Project-URL: Homepage, https://github.com/boxarrow/boxarrow
|
|
8
|
+
Classifier: Development Status :: 1 - Planning
|
|
9
|
+
Classifier: Programming Language :: Python :: 3
|
|
10
|
+
Classifier: Operating System :: OS Independent
|
|
11
|
+
Requires-Python: >=3.9
|
|
12
|
+
Description-Content-Type: text/markdown
|
|
13
|
+
|
|
14
|
+
# boxarrow
|
|
15
|
+
|
|
16
|
+
Declarative box-and-arrow diagrams for documents. Work in progress.
|
boxarrow-0.0.1/README.md
ADDED
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["setuptools>=68.0"]
|
|
3
|
+
build-backend = "setuptools.build_meta"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "boxarrow"
|
|
7
|
+
version = "0.0.1"
|
|
8
|
+
description = "Declarative box-and-arrow diagrams for documents"
|
|
9
|
+
readme = "README.md"
|
|
10
|
+
requires-python = ">=3.9"
|
|
11
|
+
license = "MIT"
|
|
12
|
+
authors = [
|
|
13
|
+
{ name = "Mohammad", email = "boxarrow.dev@gmail.com" }
|
|
14
|
+
]
|
|
15
|
+
classifiers = [
|
|
16
|
+
"Development Status :: 1 - Planning",
|
|
17
|
+
"Programming Language :: Python :: 3",
|
|
18
|
+
"Operating System :: OS Independent"
|
|
19
|
+
]
|
|
20
|
+
|
|
21
|
+
[project.urls]
|
|
22
|
+
Homepage = "https://github.com/boxarrow/boxarrow"
|
boxarrow-0.0.1/setup.cfg
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
__version__ = "0.0.1"
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: boxarrow
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: Declarative box-and-arrow diagrams for documents
|
|
5
|
+
Author-email: Mohammad <boxarrow.dev@gmail.com>
|
|
6
|
+
License-Expression: MIT
|
|
7
|
+
Project-URL: Homepage, https://github.com/boxarrow/boxarrow
|
|
8
|
+
Classifier: Development Status :: 1 - Planning
|
|
9
|
+
Classifier: Programming Language :: Python :: 3
|
|
10
|
+
Classifier: Operating System :: OS Independent
|
|
11
|
+
Requires-Python: >=3.9
|
|
12
|
+
Description-Content-Type: text/markdown
|
|
13
|
+
|
|
14
|
+
# boxarrow
|
|
15
|
+
|
|
16
|
+
Declarative box-and-arrow diagrams for documents. Work in progress.
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
boxarrow
|