laakhay-quantlab 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,15 @@
1
+ Metadata-Version: 2.4
2
+ Name: laakhay-quantlab
3
+ Version: 0.1.0
4
+ Summary: Quantitative analysis tools for the Laakhay ecosystem
5
+ Author-email: Sashank Neupane <sashank@example.com>
6
+ License: MIT
7
+ Project-URL: Homepage, https://github.com/laakhay/quantlab
8
+ Project-URL: Repository, https://github.com/laakhay/quantlab
9
+ Classifier: Programming Language :: Python :: 3
10
+ Classifier: License :: OSI Approved :: MIT License
11
+ Classifier: Operating System :: OS Independent
12
+ Requires-Python: >=3.6
13
+ Description-Content-Type: text/markdown
14
+
15
+ # Laakhay Quantlab
@@ -0,0 +1 @@
1
+ # Laakhay Quantlab
@@ -0,0 +1,11 @@
1
+ """
2
+ Quantlab - Quantitative analysis tools for the Laakhay ecosystem
3
+ """
4
+
5
+ __version__ = "0.1.0"
6
+ __author__ = "Laakhay Corporation"
7
+
8
+ def hello():
9
+ print("Hello from Laakhay Quantlab!")
10
+
11
+ __all__ = ['hello']
@@ -0,0 +1,15 @@
1
+ Metadata-Version: 2.4
2
+ Name: laakhay-quantlab
3
+ Version: 0.1.0
4
+ Summary: Quantitative analysis tools for the Laakhay ecosystem
5
+ Author-email: Sashank Neupane <sashank@example.com>
6
+ License: MIT
7
+ Project-URL: Homepage, https://github.com/laakhay/quantlab
8
+ Project-URL: Repository, https://github.com/laakhay/quantlab
9
+ Classifier: Programming Language :: Python :: 3
10
+ Classifier: License :: OSI Approved :: MIT License
11
+ Classifier: Operating System :: OS Independent
12
+ Requires-Python: >=3.6
13
+ Description-Content-Type: text/markdown
14
+
15
+ # Laakhay Quantlab
@@ -0,0 +1,7 @@
1
+ README.md
2
+ pyproject.toml
3
+ laakhay/quantlab/__init__.py
4
+ laakhay_quantlab.egg-info/PKG-INFO
5
+ laakhay_quantlab.egg-info/SOURCES.txt
6
+ laakhay_quantlab.egg-info/dependency_links.txt
7
+ laakhay_quantlab.egg-info/top_level.txt
@@ -0,0 +1,24 @@
1
+ [build-system]
2
+ requires = ["setuptools>=61.0", "wheel"]
3
+ build-backend = "setuptools.build_meta"
4
+
5
+ [project]
6
+ name = "laakhay-quantlab"
7
+ version = "0.1.0"
8
+ description = "Quantitative analysis tools for the Laakhay ecosystem"
9
+ readme = "README.md"
10
+ license = {text = "MIT"}
11
+ authors = [
12
+ {name = "Sashank Neupane", email = "sashank@example.com"}
13
+ ]
14
+ classifiers = [
15
+ "Programming Language :: Python :: 3",
16
+ "License :: OSI Approved :: MIT License",
17
+ "Operating System :: OS Independent",
18
+ ]
19
+ requires-python = ">=3.6"
20
+ dependencies = []
21
+
22
+ [project.urls]
23
+ Homepage = "https://github.com/laakhay/quantlab"
24
+ Repository = "https://github.com/laakhay/quantlab"
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+