fsdc-calories 0.7.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.
@@ -0,0 +1,17 @@
1
+ Metadata-Version: 2.3
2
+ Name: fsdc-calories
3
+ Version: 0.7.1
4
+ Summary: Add your description here
5
+ Author: Alejandro Ouslan
6
+ Author-email: Alejandro Ouslan <alejandro.ouslan@upr.edu>
7
+ Requires-Dist: jp-imports>=1.2.0
8
+ Requires-Python: >=3.12
9
+ Description-Content-Type: text/markdown
10
+
11
+ # TODO: Add title
12
+
13
+ API to complement WordPress page.
14
+ TODO: Add description
15
+
16
+ > [!IMPORTANT]
17
+ > Proyect developent has moved to [Codeberg](https://codeberg.org/gitinference/fsdc-calories)
@@ -0,0 +1,7 @@
1
+ # TODO: Add title
2
+
3
+ API to complement WordPress page.
4
+ TODO: Add description
5
+
6
+ > [!IMPORTANT]
7
+ > Proyect developent has moved to [Codeberg](https://codeberg.org/gitinference/fsdc-calories)
@@ -0,0 +1,24 @@
1
+ [project]
2
+ name = "fsdc-calories"
3
+ version = "0.7.1"
4
+ description = "Add your description here"
5
+ readme = "README.md"
6
+ authors = [{ name = "Alejandro Ouslan", email = "alejandro.ouslan@upr.edu" }]
7
+ requires-python = ">=3.12"
8
+ dependencies = [
9
+ "jp-imports>=1.2.0",
10
+ ]
11
+
12
+ [project.scripts]
13
+ fsdc-calories = "fsdc_calories:main"
14
+
15
+ [build-system]
16
+ requires = ["uv_build>=0.11.15,<0.12.0"]
17
+ build-backend = "uv_build"
18
+
19
+ [dependency-groups]
20
+ dev = [
21
+ "jupyter>=1.1.1",
22
+ "pre-commit>=4.6.0",
23
+ "pynvim>=0.5.2",
24
+ ]
@@ -0,0 +1,7 @@
1
+ from importlib.metadata import version
2
+
3
+ __version__ = version("fsdc_calories")
4
+
5
+
6
+ def main() -> None:
7
+ print("Hello from fsdc-calories!")