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.
- laakhay_quantlab-0.1.0/PKG-INFO +15 -0
- laakhay_quantlab-0.1.0/README.md +1 -0
- laakhay_quantlab-0.1.0/laakhay/quantlab/__init__.py +11 -0
- laakhay_quantlab-0.1.0/laakhay_quantlab.egg-info/PKG-INFO +15 -0
- laakhay_quantlab-0.1.0/laakhay_quantlab.egg-info/SOURCES.txt +7 -0
- laakhay_quantlab-0.1.0/laakhay_quantlab.egg-info/dependency_links.txt +1 -0
- laakhay_quantlab-0.1.0/laakhay_quantlab.egg-info/top_level.txt +1 -0
- laakhay_quantlab-0.1.0/pyproject.toml +24 -0
- laakhay_quantlab-0.1.0/setup.cfg +4 -0
|
@@ -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,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
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
laakhay
|
|
@@ -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"
|