Permalink
Cannot retrieve contributors at this time
Join GitHub today
GitHub is home to over 36 million developers working together to host and review code, manage projects, and build software together.
Sign up
Fetching contributors…
| import os | |
| import sys | |
| if sys.version_info < (3, 4): | |
| sys.exit('ERROR: Backtesting.py requires Python 3.4+') | |
| if __name__ == '__main__': | |
| from setuptools import setup, find_packages | |
| setup( | |
| name='Backtesting', | |
| description="Backtest trading strategies in Python", | |
| license='AGPL-3.0', | |
| url='https://kernc.github.io/backtesting.py/', | |
| project_urls={ | |
| 'Documentation': 'https://kernc.github.io/backtesting.py/doc/backtesting/', | |
| 'Source': 'https://github.com/kernc/backtesting.py/', | |
| 'Tracker': 'https://github.com/kernc/backtesting.py/issues', | |
| }, | |
| long_description=open(os.path.join(os.path.dirname(__file__), 'README.md')).read(), | |
| long_description_content_type='text/markdown', | |
| packages=find_packages(), | |
| include_package_data=True, | |
| setup_requires=[ | |
| 'setuptools_git', | |
| 'setuptools_scm', | |
| ], | |
| use_scm_version={ | |
| 'write_to': os.path.join('backtesting', '_version.py'), | |
| }, | |
| install_requires=[ | |
| 'typing ; python_version < "3.5"', | |
| 'numpy', | |
| 'pandas', | |
| 'bokeh >= 0.12.15', | |
| ], | |
| extras_require={ | |
| 'doc': [ | |
| 'pdoc3', | |
| 'jupytext >= 1.0.2', | |
| 'nbconvert', | |
| 'ipykernel', # for nbconvert | |
| 'jupyter_client', # for nbconvert | |
| ], | |
| 'test': [ | |
| 'seaborn', | |
| 'matplotlib', | |
| ], | |
| 'dev': [ | |
| 'flake8', | |
| ], | |
| }, | |
| test_suite="backtesting.test", | |
| python_requires='>=3.4', | |
| author='Zach Lûster', | |
| classifiers=[ | |
| 'Intended Audience :: Financial and Insurance Industry', | |
| 'Intended Audience :: Science/Research', | |
| 'License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)', | |
| 'Operating System :: OS Independent', | |
| 'Programming Language :: Python :: 3 :: Only', | |
| 'Topic :: Office/Business :: Financial :: Investment', | |
| 'Topic :: Scientific/Engineering :: Visualization', | |
| ], | |
| keywords=( | |
| 'algo', | |
| 'algorithmic', | |
| 'ashi', | |
| 'backtest', | |
| 'backtesting', | |
| 'bitcoin', | |
| 'bokeh', | |
| 'bonds', | |
| 'candles', | |
| 'candlestick', | |
| 'cboe', | |
| 'chart', | |
| 'cme', | |
| 'commodities', | |
| 'crash', | |
| 'crypto', | |
| 'currency', | |
| 'drawdown', | |
| 'equity', | |
| 'ethereum', | |
| 'exchange', | |
| 'finance', | |
| 'financial', | |
| 'forex', | |
| 'fund', | |
| 'futures', | |
| 'fx', | |
| 'fxpro', | |
| 'gold', | |
| 'heiken', | |
| 'historical', | |
| 'indicator', | |
| 'invest', | |
| 'investing', | |
| 'investment', | |
| 'macd', | |
| 'market', | |
| 'mechanical', | |
| 'money', | |
| 'oanda', | |
| 'ohlc', | |
| 'ohlcv', | |
| 'order', | |
| 'profit', | |
| 'quant', | |
| 'quantitative', | |
| 'silver', | |
| 'stocks', | |
| 'strategy', | |
| 'ticker', | |
| 'trader', | |
| 'trading', | |
| 'tradingview', | |
| 'usd', | |
| ), | |
| ) |