-
Notifications
You must be signed in to change notification settings - Fork 56
/
setup.py
executable file
·43 lines (38 loc) · 1.14 KB
/
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
36
37
38
39
40
41
42
43
#!/usr/bin/env python
import ast
import re
from setuptools import setup, find_packages
_version_re = re.compile(r'__version__\s+=\s+(.*)')
with open('pipeline_live/_version.py', 'rb') as f:
version = str(ast.literal_eval(_version_re.search(
f.read().decode('utf-8')).group(1)))
with open('README.md') as readme_file:
README = readme_file.read()
setup(
name='pipeline-live',
version=version,
description='Zipline Pipeline extension for live trade',
long_description=README,
long_description_content_type='text/markdown',
author='Alpaca',
author_email='[email protected]',
url='https://github.com/alpacahq/pipeline_live',
keywords='financial,zipline,pipeline,stock,screening,api,trade',
packages=find_packages(),
install_requires=[
'pandas==0.22.0',
'numpy==1.19.4',
'scipy<=1.6.0',
'pandas-datareader<=0.8.1',
'lxml>=4.6.2',
'alpaca-trade-api==1.5.0',
'iexfinance>=0.4.1,<0.5.0',
'zipline==1.3.0',
],
tests_require=[
'pytest',
'pytest-cov',
'flake8',
],
setup_requires=['pytest-runner', 'flake8'],
)