-
Notifications
You must be signed in to change notification settings - Fork 12
/
setup.py
27 lines (26 loc) · 868 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
from setuptools import find_packages, setup
setup(
name="positionbt",
version="v1.0.3",
author="Xuan Ronaldo",
author_email="[email protected]",
description="PositionBT is a simple, fast, and customizable backtesting framework "
+ "that directly evaluates trading strategies through position data (ranging from -1 to 1).",
url="https://github.com/xuanronaldo/positionbt",
packages=find_packages(where="src"),
package_dir={"": "src"},
package_data={
"positionbt.visualization": ["templates/*.html"],
},
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
python_requires=">=3.10",
install_requires=[
"polars>=1.13.0",
"pandas>=2.0.0",
"plotly>=5.18.0",
],
)