Files
options_backtester/setup.py
T
2022-07-04 13:19:01 +08:00

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',
)