-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
35 lines (24 loc) · 1022 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
import setuptools
setuptools.setup(
author="Jash Shah",
author_email="[email protected]",
name='AlgoAnalyzer',
license="MIT",
description='AlgoAnalyzer is a package for designing your trading strategies and run simulations to backtest your strategies and check their robustness',
version='v0.0.6',
long_description_content_type='text/markdown',
long_description=open('Readme.md',encoding="utf-8").read(),
url='https://github.com/Jash271/AlgoAnalyzer',
packages=setuptools.find_packages(),
python_requires=">=3.6",
install_requires=['yfinance','plotly'],
classifiers=[
'Development Status :: 4 - Beta',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python',
'Topic :: Software Development :: Libraries',
'Topic :: Software Development :: Libraries :: Python Modules',
'Intended Audience :: Developers',
],
include_package_data=True,
)