finxerlib 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,18 @@
1
+ Metadata-Version: 2.4
2
+ Name: finxerlib
3
+ Version: 0.1.0
4
+ Author-email: Marcos Florencio <admin@marcosflorencio.com>
5
+ Keywords: finance,portfolio
6
+ Classifier: Programming Language :: Python :: 3
7
+ Requires-Python: >=3.13
8
+ Requires-Dist: numpy
9
+ Requires-Dist: pandas
10
+ Provides-Extra: dev
11
+ Requires-Dist: black; extra == "dev"
12
+ Requires-Dist: build; extra == "dev"
13
+ Requires-Dist: coverage[toml]; extra == "dev"
14
+ Requires-Dist: pytest; extra == "dev"
15
+ Requires-Dist: pytest-cov; extra == "dev"
16
+ Requires-Dist: pytest-html; extra == "dev"
17
+ Requires-Dist: pytest-xdist; extra == "dev"
18
+ Requires-Dist: twine; extra == "dev"
@@ -0,0 +1,9 @@
1
+ ```python
2
+ with pd.option_context(
3
+ "display.max_rows", None,
4
+ "display.max_columns", None,
5
+ "display.max_colwidth", None,
6
+ "display.width", None
7
+ ):
8
+ print(df)
9
+ ```
@@ -0,0 +1,35 @@
1
+ [build-system]
2
+ requires = ["setuptools"]
3
+ build-backend = "setuptools.build_meta"
4
+
5
+ [project]
6
+ name = "finxerlib"
7
+ version = "0.1.0"
8
+ description = ""
9
+ readme = ""
10
+ requires-python = ">=3.13"
11
+ keywords = ["finance", "portfolio"]
12
+ classifiers = ["Programming Language :: Python :: 3"]
13
+ authors = [{name = "Marcos Florencio", email = "admin@marcosflorencio.com"}]
14
+ dependencies = [
15
+ "numpy",
16
+ "pandas"
17
+ ]
18
+
19
+ [project.optional-dependencies]
20
+ dev = [
21
+ "black",
22
+ "build",
23
+ "coverage[toml]",
24
+ "pytest",
25
+ "pytest-cov",
26
+ "pytest-html",
27
+ "pytest-xdist",
28
+ "twine",
29
+ ]
30
+
31
+ [tool.setuptools.packages.find]
32
+ where = ["src"]
33
+
34
+ [project.scripts]
35
+ finxerlib = "finxerlib.cli:main"
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+
@@ -0,0 +1,7 @@
1
+ from .core import hello
2
+
3
+
4
+ ################################################################################
5
+ # Public Interface
6
+ ################################################################################
7
+ __version__ = "0.1.0"
@@ -0,0 +1,5 @@
1
+ ################################################################################
2
+ # Public Interface
3
+ ################################################################################
4
+ def main():
5
+ return "Hello!"
@@ -0,0 +1,5 @@
1
+ ################################################################################
2
+ # Public Interface
3
+ ################################################################################
4
+ def hello(name):
5
+ return f"Hello {name}!"
File without changes
@@ -0,0 +1,18 @@
1
+ Metadata-Version: 2.4
2
+ Name: finxerlib
3
+ Version: 0.1.0
4
+ Author-email: Marcos Florencio <admin@marcosflorencio.com>
5
+ Keywords: finance,portfolio
6
+ Classifier: Programming Language :: Python :: 3
7
+ Requires-Python: >=3.13
8
+ Requires-Dist: numpy
9
+ Requires-Dist: pandas
10
+ Provides-Extra: dev
11
+ Requires-Dist: black; extra == "dev"
12
+ Requires-Dist: build; extra == "dev"
13
+ Requires-Dist: coverage[toml]; extra == "dev"
14
+ Requires-Dist: pytest; extra == "dev"
15
+ Requires-Dist: pytest-cov; extra == "dev"
16
+ Requires-Dist: pytest-html; extra == "dev"
17
+ Requires-Dist: pytest-xdist; extra == "dev"
18
+ Requires-Dist: twine; extra == "dev"
@@ -0,0 +1,12 @@
1
+ README.md
2
+ pyproject.toml
3
+ src/finxerlib/__init__.py
4
+ src/finxerlib/cli.py
5
+ src/finxerlib/core.py
6
+ src/finxerlib/utils.py
7
+ src/finxerlib.egg-info/PKG-INFO
8
+ src/finxerlib.egg-info/SOURCES.txt
9
+ src/finxerlib.egg-info/dependency_links.txt
10
+ src/finxerlib.egg-info/entry_points.txt
11
+ src/finxerlib.egg-info/requires.txt
12
+ src/finxerlib.egg-info/top_level.txt
@@ -0,0 +1,2 @@
1
+ [console_scripts]
2
+ finxerlib = finxerlib.cli:main
@@ -0,0 +1,12 @@
1
+ numpy
2
+ pandas
3
+
4
+ [dev]
5
+ black
6
+ build
7
+ coverage[toml]
8
+ pytest
9
+ pytest-cov
10
+ pytest-html
11
+ pytest-xdist
12
+ twine
@@ -0,0 +1 @@
1
+ finxerlib