linewire 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.
- linewire-0.0.1/PKG-INFO +15 -0
- linewire-0.0.1/README.md +5 -0
- linewire-0.0.1/linewire/__init__.py +2 -0
- linewire-0.0.1/linewire.egg-info/PKG-INFO +15 -0
- linewire-0.0.1/linewire.egg-info/SOURCES.txt +7 -0
- linewire-0.0.1/linewire.egg-info/dependency_links.txt +1 -0
- linewire-0.0.1/linewire.egg-info/top_level.txt +1 -0
- linewire-0.0.1/pyproject.toml +15 -0
- linewire-0.0.1/setup.cfg +4 -0
linewire-0.0.1/PKG-INFO
ADDED
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: linewire
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: Linewire — official package. In active development. https://linewire.io
|
|
5
|
+
License: MIT
|
|
6
|
+
Project-URL: Homepage, https://linewire.io
|
|
7
|
+
Project-URL: Source, https://github.com/linewirehq
|
|
8
|
+
Requires-Python: >=3.9
|
|
9
|
+
Description-Content-Type: text/markdown
|
|
10
|
+
|
|
11
|
+
# linewire
|
|
12
|
+
|
|
13
|
+
Official package for [Linewire](https://linewire.io) — in active development.
|
|
14
|
+
|
|
15
|
+
This is a placeholder release; the real API ships soon.
|
linewire-0.0.1/README.md
ADDED
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: linewire
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: Linewire — official package. In active development. https://linewire.io
|
|
5
|
+
License: MIT
|
|
6
|
+
Project-URL: Homepage, https://linewire.io
|
|
7
|
+
Project-URL: Source, https://github.com/linewirehq
|
|
8
|
+
Requires-Python: >=3.9
|
|
9
|
+
Description-Content-Type: text/markdown
|
|
10
|
+
|
|
11
|
+
# linewire
|
|
12
|
+
|
|
13
|
+
Official package for [Linewire](https://linewire.io) — in active development.
|
|
14
|
+
|
|
15
|
+
This is a placeholder release; the real API ships soon.
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
linewire
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["setuptools>=68"]
|
|
3
|
+
build-backend = "setuptools.build_meta"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "linewire"
|
|
7
|
+
version = "0.0.1"
|
|
8
|
+
description = "Linewire — official package. In active development. https://linewire.io"
|
|
9
|
+
readme = "README.md"
|
|
10
|
+
license = {text = "MIT"}
|
|
11
|
+
requires-python = ">=3.9"
|
|
12
|
+
|
|
13
|
+
[project.urls]
|
|
14
|
+
Homepage = "https://linewire.io"
|
|
15
|
+
Source = "https://github.com/linewirehq"
|
linewire-0.0.1/setup.cfg
ADDED