forked from alpacahq/alpaca-trade-api-python
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·42 lines (34 loc) · 1.16 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
#!/usr/bin/env python
import ast
import os
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()
with open(os.path.join("requirements", "requirements.txt")) as reqs:
REQUIREMENTS = reqs.readlines()
with open(os.path.join("requirements", "requirements_test.txt")) as reqs:
REQUIREMENTS_TEST = reqs.readlines()
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',
'alpaca_trade_api.alpha_vantage',
],
install_requires=REQUIREMENTS,
tests_require=REQUIREMENTS_TEST,
setup_requires=['pytest-runner', 'flake8'],
)