fred.mlambda 0.1.0__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.
- fred_mlambda-0.1.0/MANIFEST.in +2 -0
- fred_mlambda-0.1.0/PKG-INFO +20 -0
- fred_mlambda-0.1.0/README.md +1 -0
- fred_mlambda-0.1.0/requirements.txt +2 -0
- fred_mlambda-0.1.0/setup.cfg +4 -0
- fred_mlambda-0.1.0/setup.py +50 -0
- fred_mlambda-0.1.0/src/main/fred/mlambda/__init__.py +0 -0
- fred_mlambda-0.1.0/src/main/fred/mlambda/version +1 -0
- fred_mlambda-0.1.0/src/main/fred/mlambda/version.py +9 -0
- fred_mlambda-0.1.0/src/main/fred.mlambda.egg-info/PKG-INFO +20 -0
- fred_mlambda-0.1.0/src/main/fred.mlambda.egg-info/SOURCES.txt +13 -0
- fred_mlambda-0.1.0/src/main/fred.mlambda.egg-info/dependency_links.txt +1 -0
- fred_mlambda-0.1.0/src/main/fred.mlambda.egg-info/entry_points.txt +2 -0
- fred_mlambda-0.1.0/src/main/fred.mlambda.egg-info/requires.txt +1 -0
- fred_mlambda-0.1.0/src/main/fred.mlambda.egg-info/top_level.txt +1 -0
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: fred.mlambda
|
|
3
|
+
Version: 0.1.0
|
|
4
|
+
Summary: FRED-MLAMBDA
|
|
5
|
+
Home-page: https://fred.fhr.tools
|
|
6
|
+
Author: Fahera Research, Education, and Development
|
|
7
|
+
Author-email: fred@fahera.mx
|
|
8
|
+
Requires-Python: >=3.11
|
|
9
|
+
Description-Content-Type: text/markdown
|
|
10
|
+
Requires-Dist: fred-oss==0.66.0
|
|
11
|
+
Dynamic: author
|
|
12
|
+
Dynamic: author-email
|
|
13
|
+
Dynamic: description
|
|
14
|
+
Dynamic: description-content-type
|
|
15
|
+
Dynamic: home-page
|
|
16
|
+
Dynamic: requires-dist
|
|
17
|
+
Dynamic: requires-python
|
|
18
|
+
Dynamic: summary
|
|
19
|
+
|
|
20
|
+
# FRED MLAMBDA
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
# FRED MLAMBDA
|
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
import os
|
|
2
|
+
import json
|
|
3
|
+
from typing import Dict, List
|
|
4
|
+
from setuptools import setup, find_namespace_packages
|
|
5
|
+
|
|
6
|
+
|
|
7
|
+
CODEBASE_PATH = os.environ.get(
|
|
8
|
+
"CODEBASE_PATH",
|
|
9
|
+
default=os.path.join("src", "main"),
|
|
10
|
+
)
|
|
11
|
+
|
|
12
|
+
with open("requirements.txt", "r") as file:
|
|
13
|
+
requirements = [line for line in file.read().splitlines() if line and not line.startswith("#")]
|
|
14
|
+
|
|
15
|
+
version_filepath = os.path.join(CODEBASE_PATH, "fred", "mlambda", "version")
|
|
16
|
+
with open(version_filepath, "r") as file:
|
|
17
|
+
version = file.read().strip()
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
with open("README.md") as file:
|
|
21
|
+
readme = file.read()
|
|
22
|
+
|
|
23
|
+
|
|
24
|
+
setup(
|
|
25
|
+
name="fred.mlambda",
|
|
26
|
+
version=version,
|
|
27
|
+
description="FRED-MLAMBDA",
|
|
28
|
+
long_description=readme,
|
|
29
|
+
long_description_content_type='text/markdown',
|
|
30
|
+
url="https://fred.fhr.tools",
|
|
31
|
+
author="Fahera Research, Education, and Development",
|
|
32
|
+
author_email="fred@fahera.mx",
|
|
33
|
+
packages=find_namespace_packages(where=CODEBASE_PATH),
|
|
34
|
+
package_dir={
|
|
35
|
+
"": CODEBASE_PATH
|
|
36
|
+
},
|
|
37
|
+
package_data={
|
|
38
|
+
"": [
|
|
39
|
+
version_filepath,
|
|
40
|
+
]
|
|
41
|
+
},
|
|
42
|
+
entry_points={
|
|
43
|
+
"console_scripts": [
|
|
44
|
+
"fred-mlambda=fred.mlambda.cli.main:CLI.cli_exec",
|
|
45
|
+
]
|
|
46
|
+
},
|
|
47
|
+
install_requires=requirements,
|
|
48
|
+
include_package_data=True,
|
|
49
|
+
python_requires=">=3.11",
|
|
50
|
+
)
|
|
File without changes
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
0.1.0
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: fred.mlambda
|
|
3
|
+
Version: 0.1.0
|
|
4
|
+
Summary: FRED-MLAMBDA
|
|
5
|
+
Home-page: https://fred.fhr.tools
|
|
6
|
+
Author: Fahera Research, Education, and Development
|
|
7
|
+
Author-email: fred@fahera.mx
|
|
8
|
+
Requires-Python: >=3.11
|
|
9
|
+
Description-Content-Type: text/markdown
|
|
10
|
+
Requires-Dist: fred-oss==0.66.0
|
|
11
|
+
Dynamic: author
|
|
12
|
+
Dynamic: author-email
|
|
13
|
+
Dynamic: description
|
|
14
|
+
Dynamic: description-content-type
|
|
15
|
+
Dynamic: home-page
|
|
16
|
+
Dynamic: requires-dist
|
|
17
|
+
Dynamic: requires-python
|
|
18
|
+
Dynamic: summary
|
|
19
|
+
|
|
20
|
+
# FRED MLAMBDA
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
MANIFEST.in
|
|
2
|
+
README.md
|
|
3
|
+
requirements.txt
|
|
4
|
+
setup.py
|
|
5
|
+
src/main/fred.mlambda.egg-info/PKG-INFO
|
|
6
|
+
src/main/fred.mlambda.egg-info/SOURCES.txt
|
|
7
|
+
src/main/fred.mlambda.egg-info/dependency_links.txt
|
|
8
|
+
src/main/fred.mlambda.egg-info/entry_points.txt
|
|
9
|
+
src/main/fred.mlambda.egg-info/requires.txt
|
|
10
|
+
src/main/fred.mlambda.egg-info/top_level.txt
|
|
11
|
+
src/main/fred/mlambda/__init__.py
|
|
12
|
+
src/main/fred/mlambda/version
|
|
13
|
+
src/main/fred/mlambda/version.py
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
fred-oss==0.66.0
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
fred
|