flanj 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.
- flanj-0.0.1/PKG-INFO +18 -0
- flanj-0.0.1/README.md +8 -0
- flanj-0.0.1/pyproject.toml +18 -0
- flanj-0.0.1/setup.cfg +4 -0
- flanj-0.0.1/src/flanj/__init__.py +3 -0
- flanj-0.0.1/src/flanj.egg-info/PKG-INFO +18 -0
- flanj-0.0.1/src/flanj.egg-info/SOURCES.txt +7 -0
- flanj-0.0.1/src/flanj.egg-info/dependency_links.txt +1 -0
- flanj-0.0.1/src/flanj.egg-info/top_level.txt +1 -0
flanj-0.0.1/PKG-INFO
ADDED
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: flanj
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: Placeholder for the Flanj SDK — in development at https://flanj.io
|
|
5
|
+
License: Apache-2.0
|
|
6
|
+
Project-URL: Homepage, https://flanj.io
|
|
7
|
+
Project-URL: Source, https://github.com/flanj-io
|
|
8
|
+
Requires-Python: >=3.9
|
|
9
|
+
Description-Content-Type: text/markdown
|
|
10
|
+
|
|
11
|
+
# flanj
|
|
12
|
+
|
|
13
|
+
This name is reserved for **Flanj** (https://flanj.io).
|
|
14
|
+
|
|
15
|
+
The real package is in development. Until it ships, this is an intentionally
|
|
16
|
+
empty placeholder. Don't depend on it.
|
|
17
|
+
|
|
18
|
+
Development happens at https://github.com/flanj-io.
|
flanj-0.0.1/README.md
ADDED
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["setuptools>=68"]
|
|
3
|
+
build-backend = "setuptools.build_meta"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "flanj"
|
|
7
|
+
version = "0.0.1"
|
|
8
|
+
description = "Placeholder for the Flanj SDK — in development at https://flanj.io"
|
|
9
|
+
readme = "README.md"
|
|
10
|
+
license = { text = "Apache-2.0" }
|
|
11
|
+
requires-python = ">=3.9"
|
|
12
|
+
|
|
13
|
+
[project.urls]
|
|
14
|
+
Homepage = "https://flanj.io"
|
|
15
|
+
Source = "https://github.com/flanj-io"
|
|
16
|
+
|
|
17
|
+
[tool.setuptools.packages.find]
|
|
18
|
+
where = ["src"]
|
flanj-0.0.1/setup.cfg
ADDED
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: flanj
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: Placeholder for the Flanj SDK — in development at https://flanj.io
|
|
5
|
+
License: Apache-2.0
|
|
6
|
+
Project-URL: Homepage, https://flanj.io
|
|
7
|
+
Project-URL: Source, https://github.com/flanj-io
|
|
8
|
+
Requires-Python: >=3.9
|
|
9
|
+
Description-Content-Type: text/markdown
|
|
10
|
+
|
|
11
|
+
# flanj
|
|
12
|
+
|
|
13
|
+
This name is reserved for **Flanj** (https://flanj.io).
|
|
14
|
+
|
|
15
|
+
The real package is in development. Until it ships, this is an intentionally
|
|
16
|
+
empty placeholder. Don't depend on it.
|
|
17
|
+
|
|
18
|
+
Development happens at https://github.com/flanj-io.
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
flanj
|