forked from polakowo/vectorbt
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
47 lines (45 loc) · 1.48 KB
/
setup.py
File metadata and controls
47 lines (45 loc) · 1.48 KB
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
36
37
38
39
40
41
42
43
44
45
46
47
from setuptools import setup, find_packages
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name='vectorbt',
version='0.16.6',
description='Python library for backtesting and analyzing trading strategies at scale',
author='Oleg Polakow',
author_email='olegpolakow@gmail.com',
long_description=long_description,
long_description_content_type="text/markdown",
url='https://github.com/polakowo/vectorbt',
packages=find_packages(),
package_data={
'vectorbt': ['templates/*.json']
},
install_requires=[
'numpy',
'pandas',
'scipy',
'matplotlib',
'plotly>=4.12.0',
'ipywidgets>=7.0.0',
'numba>=0.51.2'
],
extras_require={
"empyrical":["empyrical"]
},
python_requires='>=3.6, <3.9',
license='Apache 2.0',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Intended Audience :: Financial and Insurance Industry',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Operating System :: OS Independent',
'Intended Audience :: Science/Research',
'Topic :: Software Development',
'Topic :: Office/Business :: Financial',
'Topic :: Scientific/Engineering :: Information Analysis'
],
)