mirror of
https://github.com/wassname/options_backtester.git
synced 2026-06-27 16:30:55 +08:00
11 lines
319 B
Python
11 lines
319 B
Python
from setuptools import find_packages, setup
|
|
|
|
setup(
|
|
name='backtester',
|
|
packages=find_packages(),
|
|
version='0.1.0',
|
|
description='Backtesting moris idea of buying calls 5 qs before earnings, and selling them 1 week before. Apparently 30% annual return',
|
|
author='wassname',
|
|
license='proprietary',
|
|
)
|