elvers 0.0.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.
- elvers-0.0.1/LICENSE +21 -0
- elvers-0.0.1/PKG-INFO +49 -0
- elvers-0.0.1/README.md +22 -0
- elvers-0.0.1/elvers/__init__.py +13 -0
- elvers-0.0.1/elvers.egg-info/PKG-INFO +49 -0
- elvers-0.0.1/elvers.egg-info/SOURCES.txt +10 -0
- elvers-0.0.1/elvers.egg-info/dependency_links.txt +1 -0
- elvers-0.0.1/elvers.egg-info/requires.txt +1 -0
- elvers-0.0.1/elvers.egg-info/top_level.txt +1 -0
- elvers-0.0.1/pyproject.toml +34 -0
- elvers-0.0.1/setup.cfg +4 -0
- elvers-0.0.1/setup.py +43 -0
elvers-0.0.1/LICENSE
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2026 Phantom Management
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
elvers-0.0.1/PKG-INFO
ADDED
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: elvers
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: High-performance multi-factor quantitative framework built on Polars.
|
|
5
|
+
Home-page: https://github.com/quantbai/elvers
|
|
6
|
+
Author: Phantom Management
|
|
7
|
+
Author-email: Phantom Management <quantbai@gmail.com>
|
|
8
|
+
License: MIT
|
|
9
|
+
Project-URL: Homepage, https://github.com/quantbai/elvers
|
|
10
|
+
Project-URL: Repository, https://github.com/quantbai/elvers
|
|
11
|
+
Classifier: Development Status :: 2 - Pre-Alpha
|
|
12
|
+
Classifier: Intended Audience :: Financial and Insurance Industry
|
|
13
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
14
|
+
Classifier: Programming Language :: Python :: 3
|
|
15
|
+
Classifier: Programming Language :: Python :: 3.10
|
|
16
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
17
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
18
|
+
Classifier: Programming Language :: Python :: 3.13
|
|
19
|
+
Requires-Python: >=3.10
|
|
20
|
+
Description-Content-Type: text/markdown
|
|
21
|
+
License-File: LICENSE
|
|
22
|
+
Requires-Dist: polars>=1.0.0
|
|
23
|
+
Dynamic: author
|
|
24
|
+
Dynamic: home-page
|
|
25
|
+
Dynamic: license-file
|
|
26
|
+
Dynamic: requires-python
|
|
27
|
+
|
|
28
|
+
# Elvers
|
|
29
|
+
|
|
30
|
+
High-performance multi-factor quantitative framework built on Polars.
|
|
31
|
+
|
|
32
|
+
Named after **ELVES** (Emission of Light and Very Low Frequency perturbations due to Electromagnetic Pulse Sources), the atmospheric lightning phenomenon that occurs at extreme speed.
|
|
33
|
+
|
|
34
|
+
## Features (Coming Soon)
|
|
35
|
+
|
|
36
|
+
- Pure Polars-based lazy evaluation
|
|
37
|
+
- Expression-based factor computation
|
|
38
|
+
- Lightning-fast backtesting engine
|
|
39
|
+
- Professional-grade IC/ICIR analysis
|
|
40
|
+
|
|
41
|
+
## Installation
|
|
42
|
+
|
|
43
|
+
```bash
|
|
44
|
+
pip install elvers
|
|
45
|
+
```
|
|
46
|
+
|
|
47
|
+
## Author
|
|
48
|
+
|
|
49
|
+
Phantom Management
|
elvers-0.0.1/README.md
ADDED
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
# Elvers
|
|
2
|
+
|
|
3
|
+
High-performance multi-factor quantitative framework built on Polars.
|
|
4
|
+
|
|
5
|
+
Named after **ELVES** (Emission of Light and Very Low Frequency perturbations due to Electromagnetic Pulse Sources), the atmospheric lightning phenomenon that occurs at extreme speed.
|
|
6
|
+
|
|
7
|
+
## Features (Coming Soon)
|
|
8
|
+
|
|
9
|
+
- Pure Polars-based lazy evaluation
|
|
10
|
+
- Expression-based factor computation
|
|
11
|
+
- Lightning-fast backtesting engine
|
|
12
|
+
- Professional-grade IC/ICIR analysis
|
|
13
|
+
|
|
14
|
+
## Installation
|
|
15
|
+
|
|
16
|
+
```bash
|
|
17
|
+
pip install elvers
|
|
18
|
+
```
|
|
19
|
+
|
|
20
|
+
## Author
|
|
21
|
+
|
|
22
|
+
Phantom Management
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
"""
|
|
2
|
+
Elvers - High-performance multi-factor quantitative framework.
|
|
3
|
+
|
|
4
|
+
Built on Polars for lightning-fast factor research and backtesting.
|
|
5
|
+
Named after ELVES (Emission of Light and Very Low Frequency perturbations),
|
|
6
|
+
the atmospheric lightning phenomenon.
|
|
7
|
+
|
|
8
|
+
Author: Phantom Management
|
|
9
|
+
"""
|
|
10
|
+
|
|
11
|
+
__version__ = "0.0.1"
|
|
12
|
+
__author__ = "Phantom Management"
|
|
13
|
+
|
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: elvers
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: High-performance multi-factor quantitative framework built on Polars.
|
|
5
|
+
Home-page: https://github.com/quantbai/elvers
|
|
6
|
+
Author: Phantom Management
|
|
7
|
+
Author-email: Phantom Management <quantbai@gmail.com>
|
|
8
|
+
License: MIT
|
|
9
|
+
Project-URL: Homepage, https://github.com/quantbai/elvers
|
|
10
|
+
Project-URL: Repository, https://github.com/quantbai/elvers
|
|
11
|
+
Classifier: Development Status :: 2 - Pre-Alpha
|
|
12
|
+
Classifier: Intended Audience :: Financial and Insurance Industry
|
|
13
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
14
|
+
Classifier: Programming Language :: Python :: 3
|
|
15
|
+
Classifier: Programming Language :: Python :: 3.10
|
|
16
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
17
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
18
|
+
Classifier: Programming Language :: Python :: 3.13
|
|
19
|
+
Requires-Python: >=3.10
|
|
20
|
+
Description-Content-Type: text/markdown
|
|
21
|
+
License-File: LICENSE
|
|
22
|
+
Requires-Dist: polars>=1.0.0
|
|
23
|
+
Dynamic: author
|
|
24
|
+
Dynamic: home-page
|
|
25
|
+
Dynamic: license-file
|
|
26
|
+
Dynamic: requires-python
|
|
27
|
+
|
|
28
|
+
# Elvers
|
|
29
|
+
|
|
30
|
+
High-performance multi-factor quantitative framework built on Polars.
|
|
31
|
+
|
|
32
|
+
Named after **ELVES** (Emission of Light and Very Low Frequency perturbations due to Electromagnetic Pulse Sources), the atmospheric lightning phenomenon that occurs at extreme speed.
|
|
33
|
+
|
|
34
|
+
## Features (Coming Soon)
|
|
35
|
+
|
|
36
|
+
- Pure Polars-based lazy evaluation
|
|
37
|
+
- Expression-based factor computation
|
|
38
|
+
- Lightning-fast backtesting engine
|
|
39
|
+
- Professional-grade IC/ICIR analysis
|
|
40
|
+
|
|
41
|
+
## Installation
|
|
42
|
+
|
|
43
|
+
```bash
|
|
44
|
+
pip install elvers
|
|
45
|
+
```
|
|
46
|
+
|
|
47
|
+
## Author
|
|
48
|
+
|
|
49
|
+
Phantom Management
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
polars>=1.0.0
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
elvers
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["setuptools>=61.0", "wheel"]
|
|
3
|
+
build-backend = "setuptools.build_meta"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "elvers"
|
|
7
|
+
dynamic = ["version"]
|
|
8
|
+
description = "High-performance multi-factor quantitative framework built on Polars."
|
|
9
|
+
readme = "README.md"
|
|
10
|
+
license = {text = "MIT"}
|
|
11
|
+
authors = [
|
|
12
|
+
{name = "Phantom Management", email = "quantbai@gmail.com"}
|
|
13
|
+
]
|
|
14
|
+
requires-python = ">=3.10"
|
|
15
|
+
dependencies = [
|
|
16
|
+
"polars>=1.0.0",
|
|
17
|
+
]
|
|
18
|
+
classifiers = [
|
|
19
|
+
"Development Status :: 2 - Pre-Alpha",
|
|
20
|
+
"Intended Audience :: Financial and Insurance Industry",
|
|
21
|
+
"License :: OSI Approved :: MIT License",
|
|
22
|
+
"Programming Language :: Python :: 3",
|
|
23
|
+
"Programming Language :: Python :: 3.10",
|
|
24
|
+
"Programming Language :: Python :: 3.11",
|
|
25
|
+
"Programming Language :: Python :: 3.12",
|
|
26
|
+
"Programming Language :: Python :: 3.13",
|
|
27
|
+
]
|
|
28
|
+
|
|
29
|
+
[project.urls]
|
|
30
|
+
Homepage = "https://github.com/quantbai/elvers"
|
|
31
|
+
Repository = "https://github.com/quantbai/elvers"
|
|
32
|
+
|
|
33
|
+
[tool.setuptools.dynamic]
|
|
34
|
+
version = {attr = "elvers.__version__"}
|
elvers-0.0.1/setup.cfg
ADDED
elvers-0.0.1/setup.py
ADDED
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
import re
|
|
2
|
+
from pathlib import Path
|
|
3
|
+
from setuptools import setup, find_packages
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
def get_version():
|
|
7
|
+
init_file = Path(__file__).parent / 'elvers' / '__init__.py'
|
|
8
|
+
content = init_file.read_text(encoding='utf-8')
|
|
9
|
+
match = re.search(r'^__version__\s*=\s*["\']([^"\']+)["\']', content, re.M)
|
|
10
|
+
return match.group(1) if match else '0.0.0'
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
setup(
|
|
14
|
+
name='elvers',
|
|
15
|
+
version=get_version(),
|
|
16
|
+
author='Phantom Management',
|
|
17
|
+
author_email='quantbai@gmail.com',
|
|
18
|
+
description='High-performance multi-factor quantitative framework built on Polars.',
|
|
19
|
+
long_description=open('README.md', encoding='utf-8').read(),
|
|
20
|
+
long_description_content_type='text/markdown',
|
|
21
|
+
url='https://github.com/quantbai/elvers',
|
|
22
|
+
packages=find_packages(),
|
|
23
|
+
install_requires=[
|
|
24
|
+
'polars>=1.0.0',
|
|
25
|
+
],
|
|
26
|
+
classifiers=[
|
|
27
|
+
'Development Status :: 2 - Pre-Alpha',
|
|
28
|
+
'Intended Audience :: Developers',
|
|
29
|
+
'Intended Audience :: Financial and Insurance Industry',
|
|
30
|
+
'Intended Audience :: Science/Research',
|
|
31
|
+
'Programming Language :: Python :: 3',
|
|
32
|
+
'Programming Language :: Python :: 3.10',
|
|
33
|
+
'Programming Language :: Python :: 3.11',
|
|
34
|
+
'Programming Language :: Python :: 3.12',
|
|
35
|
+
'Programming Language :: Python :: 3.13',
|
|
36
|
+
'License :: OSI Approved :: MIT License',
|
|
37
|
+
'Operating System :: OS Independent',
|
|
38
|
+
'Topic :: Office/Business :: Financial',
|
|
39
|
+
'Topic :: Office/Business :: Financial :: Investment',
|
|
40
|
+
'Topic :: Scientific/Engineering',
|
|
41
|
+
],
|
|
42
|
+
python_requires='>=3.10',
|
|
43
|
+
)
|