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.
@@ -0,0 +1,2 @@
1
+ include requirements.txt
2
+ include src/main/fred/mlambda/version
@@ -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,2 @@
1
+ # Install the baseline fred-oss package
2
+ fred-oss==0.66.0
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+
@@ -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,9 @@
1
+ import os
2
+
3
+ from fred.version import Version
4
+
5
+
6
+ version = Version.from_path(
7
+ name="fred.mlambda",
8
+ dirpath=os.path.dirname(__file__)
9
+ )
@@ -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,2 @@
1
+ [console_scripts]
2
+ fred-mlambda = fred.mlambda.cli.main:CLI.cli_exec
@@ -0,0 +1 @@
1
+ fred-oss==0.66.0