as4 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.
as4-0.0.1/PKG-INFO ADDED
@@ -0,0 +1,27 @@
1
+ Metadata-Version: 2.4
2
+ Name: as4
3
+ Version: 0.0.1
4
+ Summary: Name reservation for the pyas4 AS4 messaging library
5
+ Author: dbkosky
6
+ License-Expression: Apache-2.0
7
+ Project-URL: Homepage, https://github.com/dbkosky/pyas4
8
+ Project-URL: Source, https://github.com/dbkosky/pyas4
9
+ Classifier: Development Status :: 1 - Planning
10
+ Classifier: Intended Audience :: Developers
11
+ Classifier: Programming Language :: Python :: 3
12
+ Classifier: Topic :: Communications
13
+ Requires-Python: >=3.11
14
+ Description-Content-Type: text/markdown
15
+
16
+ # as4
17
+
18
+ Reserved for [pyas4](https://github.com/dbkosky/pyas4), a Python library for building, parsing and
19
+ answering AS4 messages, with the Peppol AS4 profile as its first profile.
20
+
21
+ This release is a placeholder and contains no code. Install from source until the first real release:
22
+
23
+ ```bash
24
+ git clone https://github.com/dbkosky/pyas4.git
25
+ cd pyas4
26
+ pip install -e .
27
+ ```
as4-0.0.1/README.md ADDED
@@ -0,0 +1,12 @@
1
+ # as4
2
+
3
+ Reserved for [pyas4](https://github.com/dbkosky/pyas4), a Python library for building, parsing and
4
+ answering AS4 messages, with the Peppol AS4 profile as its first profile.
5
+
6
+ This release is a placeholder and contains no code. Install from source until the first real release:
7
+
8
+ ```bash
9
+ git clone https://github.com/dbkosky/pyas4.git
10
+ cd pyas4
11
+ pip install -e .
12
+ ```
@@ -0,0 +1,27 @@
1
+ Metadata-Version: 2.4
2
+ Name: as4
3
+ Version: 0.0.1
4
+ Summary: Name reservation for the pyas4 AS4 messaging library
5
+ Author: dbkosky
6
+ License-Expression: Apache-2.0
7
+ Project-URL: Homepage, https://github.com/dbkosky/pyas4
8
+ Project-URL: Source, https://github.com/dbkosky/pyas4
9
+ Classifier: Development Status :: 1 - Planning
10
+ Classifier: Intended Audience :: Developers
11
+ Classifier: Programming Language :: Python :: 3
12
+ Classifier: Topic :: Communications
13
+ Requires-Python: >=3.11
14
+ Description-Content-Type: text/markdown
15
+
16
+ # as4
17
+
18
+ Reserved for [pyas4](https://github.com/dbkosky/pyas4), a Python library for building, parsing and
19
+ answering AS4 messages, with the Peppol AS4 profile as its first profile.
20
+
21
+ This release is a placeholder and contains no code. Install from source until the first real release:
22
+
23
+ ```bash
24
+ git clone https://github.com/dbkosky/pyas4.git
25
+ cd pyas4
26
+ pip install -e .
27
+ ```
@@ -0,0 +1,6 @@
1
+ README.md
2
+ pyproject.toml
3
+ as4.egg-info/PKG-INFO
4
+ as4.egg-info/SOURCES.txt
5
+ as4.egg-info/dependency_links.txt
6
+ as4.egg-info/top_level.txt
@@ -0,0 +1 @@
1
+
@@ -0,0 +1,25 @@
1
+ [build-system]
2
+ requires = ["setuptools"]
3
+ build-backend = "setuptools.build_meta"
4
+
5
+ [project]
6
+ name = "as4"
7
+ version = "0.0.1"
8
+ description = "Name reservation for the pyas4 AS4 messaging library"
9
+ readme = "README.md"
10
+ requires-python = ">=3.11"
11
+ license = "Apache-2.0"
12
+ authors = [{ name = "dbkosky" }]
13
+ classifiers = [
14
+ "Development Status :: 1 - Planning",
15
+ "Intended Audience :: Developers",
16
+ "Programming Language :: Python :: 3",
17
+ "Topic :: Communications",
18
+ ]
19
+
20
+ [project.urls]
21
+ Homepage = "https://github.com/dbkosky/pyas4"
22
+ Source = "https://github.com/dbkosky/pyas4"
23
+
24
+ [tool.setuptools]
25
+ packages = []
as4-0.0.1/setup.cfg ADDED
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+