This repository has been archived by the owner on Jun 15, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 110
/
setup.py
94 lines (82 loc) · 2.41 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
# *****************************************************************************
#
# Copyright (c) 2020, the pyEX authors.
#
# This file is part of the pyEX library, distributed under the terms of
# the Apache License 2.0. The full license can be found in the LICENSE file.
#
import io
import os
import os.path
from codecs import open
from setuptools import find_packages, setup
pjoin = os.path.join
here = os.path.abspath(os.path.dirname(__file__))
name = "pyEX"
def get_version(file, name="__version__"):
path = os.path.realpath(file)
version_ns = {}
with io.open(path, encoding="utf8") as f:
exec(f.read(), {}, version_ns)
return version_ns[name]
version = get_version(pjoin(here, name, "_version.py"))
with open(pjoin(here, "README.md"), encoding="utf-8") as f:
long_description = f.read().replace("\r\n", "\n")
requires = [
"aiohttp>=3.2",
"aiohttp-sse-client>=0.2.0",
"aiostream>=0.3.1",
"deprecation>=2.0.6",
"ipython>=7.2.0",
"Pillow>=5.3.0",
"pandas>=0.22",
"pytz>=2019.1",
"requests>=2.21.0",
"six",
"socketIO-client-nexus>=0.7.6",
"sseclient>=0.0.22",
"temporal-cache>=0.1.1",
]
requires_studies = [] if os.environ.get("READTHEDOCS") else ["TA-Lib>=0.4.17"]
requires_dev = requires_studies + [
"black>=20.",
"bump2version>=1.0.0",
"flake8>=3.7.8",
"flake8-black>=0.2.1",
"mock",
"pytest>=4.3.0",
"pytest-cov>=2.6.1",
"pytest-rerunfailures>=10.1",
"recommonmark",
"Sphinx>=1.8.4",
"sphinx-markdown-builder>=0.5.2",
"sphinx-rtd-theme",
]
setup(
name=name,
version=version,
description="Rest API to IEX",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/timkpaine/{name}".format(name=name),
author="Tim Paine",
author_email="[email protected]",
license="Apache 2.0",
classifiers=[
"Development Status :: 4 - Beta",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
],
keywords="finance data",
zip_safe=False,
packages=find_packages(exclude=[]),
install_requires=requires,
extras_require={
"dev": requires_dev,
"studies": requires_studies,
},
python_requires=">=3.7",
)