-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
30 lines (28 loc) · 934 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
from distutils.core import setup
from setuptools import find_packages
setup(
name='ntiles',
version='0.1.5.1',
packages=find_packages(),
license='Apache License 2.0',
description='Vectorized quantile backtester.',
url='https://github.com/Alexd14/ntiles-backtester',
download_url='https://github.com/Alexd14/ntiles/archive/refs/tags/v1.5.1.tar.gz',
keywords=['factor', 'backtesting', 'alphalens', 'vectorized backtesting', 'equity trading'],
install_requires=[
'numba',
'pandas',
'numpy',
'matplotlib',
'empyrical',
'factor_toolbox',
# 'equity-db'
],
classifiers=[
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
],
)