deepfirm 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.
- deepfirm-0.0.1/PKG-INFO +25 -0
- deepfirm-0.0.1/README.md +13 -0
- deepfirm-0.0.1/pyproject.toml +21 -0
- deepfirm-0.0.1/src/deepfirm/__init__.py +3 -0
deepfirm-0.0.1/PKG-INFO
ADDED
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
Metadata-Version: 2.5
|
|
2
|
+
Name: deepfirm
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: DeepFirm: the standard for creating and running deep firms. Placeholder release; the first working version follows.
|
|
5
|
+
Project-URL: Homepage, https://deepfirm.dev
|
|
6
|
+
Project-URL: Source, https://github.com/DeepFirm/deepfirm
|
|
7
|
+
Author: Baseplate Technologies Ltd
|
|
8
|
+
License-Expression: Apache-2.0
|
|
9
|
+
Classifier: Development Status :: 1 - Planning
|
|
10
|
+
Requires-Python: >=3.12
|
|
11
|
+
Description-Content-Type: text/markdown
|
|
12
|
+
|
|
13
|
+
# DeepFirm
|
|
14
|
+
|
|
15
|
+
The standard for creating and running a **deep firm**: a company in which
|
|
16
|
+
agents do the work and humans hold four things — purpose, policy, capital,
|
|
17
|
+
and the irreversible.
|
|
18
|
+
|
|
19
|
+
This is a placeholder release that reserves the name. It contains no
|
|
20
|
+
functionality. The first working version will be published under this name
|
|
21
|
+
when the specification and the reference runtime are ready.
|
|
22
|
+
|
|
23
|
+
- Website: https://deepfirm.dev
|
|
24
|
+
- Source: https://github.com/DeepFirm/deepfirm
|
|
25
|
+
- Licence: Apache 2.0
|
deepfirm-0.0.1/README.md
ADDED
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
# DeepFirm
|
|
2
|
+
|
|
3
|
+
The standard for creating and running a **deep firm**: a company in which
|
|
4
|
+
agents do the work and humans hold four things — purpose, policy, capital,
|
|
5
|
+
and the irreversible.
|
|
6
|
+
|
|
7
|
+
This is a placeholder release that reserves the name. It contains no
|
|
8
|
+
functionality. The first working version will be published under this name
|
|
9
|
+
when the specification and the reference runtime are ready.
|
|
10
|
+
|
|
11
|
+
- Website: https://deepfirm.dev
|
|
12
|
+
- Source: https://github.com/DeepFirm/deepfirm
|
|
13
|
+
- Licence: Apache 2.0
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
[project]
|
|
2
|
+
name = "deepfirm"
|
|
3
|
+
version = "0.0.1"
|
|
4
|
+
description = "DeepFirm: the standard for creating and running deep firms. Placeholder release; the first working version follows."
|
|
5
|
+
readme = "README.md"
|
|
6
|
+
license = "Apache-2.0"
|
|
7
|
+
requires-python = ">=3.12"
|
|
8
|
+
authors = [{ name = "Baseplate Technologies Ltd" }]
|
|
9
|
+
classifiers = ["Development Status :: 1 - Planning"]
|
|
10
|
+
dependencies = []
|
|
11
|
+
|
|
12
|
+
[project.urls]
|
|
13
|
+
Homepage = "https://deepfirm.dev"
|
|
14
|
+
Source = "https://github.com/DeepFirm/deepfirm"
|
|
15
|
+
|
|
16
|
+
[build-system]
|
|
17
|
+
requires = ["hatchling"]
|
|
18
|
+
build-backend = "hatchling.build"
|
|
19
|
+
|
|
20
|
+
[tool.hatch.build.targets.wheel]
|
|
21
|
+
packages = ["src/deepfirm"]
|