forwardpy 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.
- forwardpy-0.0.1/PKG-INFO +20 -0
- forwardpy-0.0.1/README.md +7 -0
- forwardpy-0.0.1/forwardpy/__init__.py +5 -0
- forwardpy-0.0.1/forwardpy.egg-info/PKG-INFO +20 -0
- forwardpy-0.0.1/forwardpy.egg-info/SOURCES.txt +7 -0
- forwardpy-0.0.1/forwardpy.egg-info/dependency_links.txt +1 -0
- forwardpy-0.0.1/forwardpy.egg-info/top_level.txt +1 -0
- forwardpy-0.0.1/pyproject.toml +20 -0
- forwardpy-0.0.1/setup.cfg +4 -0
forwardpy-0.0.1/PKG-INFO
ADDED
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: forwardpy
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: Interface-first Python development for AI-driven large-scale projects with C++ migration support
|
|
5
|
+
Author-email: Your Name <your@email.com>
|
|
6
|
+
License: MIT
|
|
7
|
+
Classifier: Development Status :: 1 - Planning
|
|
8
|
+
Classifier: Intended Audience :: Developers
|
|
9
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
10
|
+
Classifier: Programming Language :: Python :: 3
|
|
11
|
+
Requires-Python: >=3.8
|
|
12
|
+
Description-Content-Type: text/markdown
|
|
13
|
+
|
|
14
|
+
# forwardpy
|
|
15
|
+
|
|
16
|
+
Interface-first Python development for AI-driven large-scale projects with C++ migration support.
|
|
17
|
+
|
|
18
|
+
## Status
|
|
19
|
+
|
|
20
|
+
This package is under development.
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: forwardpy
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: Interface-first Python development for AI-driven large-scale projects with C++ migration support
|
|
5
|
+
Author-email: Your Name <your@email.com>
|
|
6
|
+
License: MIT
|
|
7
|
+
Classifier: Development Status :: 1 - Planning
|
|
8
|
+
Classifier: Intended Audience :: Developers
|
|
9
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
10
|
+
Classifier: Programming Language :: Python :: 3
|
|
11
|
+
Requires-Python: >=3.8
|
|
12
|
+
Description-Content-Type: text/markdown
|
|
13
|
+
|
|
14
|
+
# forwardpy
|
|
15
|
+
|
|
16
|
+
Interface-first Python development for AI-driven large-scale projects with C++ migration support.
|
|
17
|
+
|
|
18
|
+
## Status
|
|
19
|
+
|
|
20
|
+
This package is under development.
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
forwardpy
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["setuptools>=61.0"]
|
|
3
|
+
build-backend = "setuptools.build_meta"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "forwardpy"
|
|
7
|
+
version = "0.0.1"
|
|
8
|
+
description = "Interface-first Python development for AI-driven large-scale projects with C++ migration support"
|
|
9
|
+
readme = "README.md"
|
|
10
|
+
license = {text = "MIT"}
|
|
11
|
+
requires-python = ">=3.8"
|
|
12
|
+
authors = [
|
|
13
|
+
{name = "Your Name", email = "your@email.com"}
|
|
14
|
+
]
|
|
15
|
+
classifiers = [
|
|
16
|
+
"Development Status :: 1 - Planning",
|
|
17
|
+
"Intended Audience :: Developers",
|
|
18
|
+
"License :: OSI Approved :: MIT License",
|
|
19
|
+
"Programming Language :: Python :: 3",
|
|
20
|
+
]
|