forked from alpacahq/alpaca-trade-api-python
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·44 lines (39 loc) · 1.13 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
44
#!/usr/bin/env python
import ast
import re
from setuptools import setup
_version_re = re.compile(r'__version__\s+=\s+(.*)')
with open('alpaca_trade_api/__init__.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='alpaca-trade-api',
version=version,
description='Alpaca API python client',
long_description=README,
long_description_content_type='text/markdown',
author='Alpaca',
author_email='[email protected]',
url='https://github.com/alpacahq/alpaca-trade-api-python',
keywords='financial,timeseries,api,trade',
packages=['alpaca_trade_api', 'alpaca_trade_api.polygon'],
install_requires=[
'asyncio-nats-client',
'pandas',
'requests',
'urllib3<1.25',
'websocket-client',
'websockets>=8.0',
],
tests_require=[
'pytest',
'pytest-cov',
'requests-mock',
'coverage>=4.4.1',
'mock>=1.0.1',
'flake8',
],
setup_requires=['pytest-runner', 'flake8'],
)