forked from hummingbot/hummingbot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
165 lines (148 loc) · 4.26 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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
import os
import subprocess
import sys
import fnmatch
import numpy as np
from setuptools import find_packages, setup
from setuptools.command.build_ext import build_ext
from Cython.Build import cythonize
is_posix = (os.name == "posix")
if is_posix:
os_name = subprocess.check_output("uname").decode("utf8")
if "Darwin" in os_name:
os.environ["CFLAGS"] = "-stdlib=libc++ -std=c++11"
else:
os.environ["CFLAGS"] = "-std=c++11"
if os.environ.get("WITHOUT_CYTHON_OPTIMIZATIONS"):
os.environ["CFLAGS"] += " -O0"
# Avoid a gcc warning below:
# cc1plus: warning: command line option ???-Wstrict-prototypes??? is valid
# for C/ObjC but not for C++
class BuildExt(build_ext):
def build_extensions(self):
if os.name != "nt" and "-Wstrict-prototypes" in self.compiler.compiler_so:
self.compiler.compiler_so.remove("-Wstrict-prototypes")
super().build_extensions()
def main():
cpu_count = os.cpu_count() or 8
version = "20240718"
all_packages = find_packages(include=["hummingbot", "hummingbot.*"], )
excluded_paths = [
"hummingbot.connector.gateway.clob_spot.data_sources.injective",
"hummingbot.connector.gateway.clob_perp.data_sources.injective_perpetual"
]
packages = [pkg for pkg in all_packages if not any(fnmatch.fnmatch(pkg, pattern) for pattern in excluded_paths)]
package_data = {
"hummingbot": [
"core/cpp/*",
"VERSION",
"templates/*TEMPLATE.yml"
],
}
install_requires = [
"bidict",
"aioconsole",
"aiohttp",
"aioprocessing",
"asyncssh",
"appdirs",
"appnope",
"async-timeout",
"base58",
"cachetools",
"certifi",
"coincurve",
"cryptography",
"cython==3.0.0",
"cytoolz",
"commlib-py",
"docker",
"diff-cover",
"eip712-structs",
"eth-abi",
"eth-account",
"eth-bloom",
"eth-keyfile",
"eth-typing",
"eth-utils",
"flake8",
"hexbytes",
"importlib-metadata",
"injective-py",
"mypy-extensions",
"msgpack",
"nose",
"nose-exclude",
"numpy==1.26.4",
"pandas",
"pip",
"pre-commit",
"prompt-toolkit",
"protobuf",
"psutil",
"pydantic",
"pyjwt",
"pyperclip",
"python-dateutil",
"python-telegram-bot==12.8",
"pyOpenSSL",
"requests",
"rsa",
"ruamel-yaml",
"scipy",
"signalr-client-aio",
"simplejson",
"six",
"sqlalchemy",
"tabulate",
"tzlocal",
"ujson",
"web3",
"websockets",
"yarl",
"pandas_ta==0.3.14b",
]
cython_kwargs = {
"language": "c++",
"language_level": 3,
}
cython_sources = ["hummingbot/**/*.pyx"]
compiler_directives = {
"annotation_typing": False,
}
if os.environ.get("WITHOUT_CYTHON_OPTIMIZATIONS"):
compiler_directives.update({
"optimize.use_switch": False,
"optimize.unpack_method_calls": False,
})
if is_posix:
cython_kwargs["nthreads"] = cpu_count
if "DEV_MODE" in os.environ:
version += ".dev1"
package_data[""] = [
"*.pxd", "*.pyx", "*.h"
]
package_data["hummingbot"].append("core/cpp/*.cpp")
if len(sys.argv) > 1 and sys.argv[1] == "build_ext" and is_posix:
sys.argv.append(f"--parallel={cpu_count}")
setup(name="hummingbot",
version=version,
description="Hummingbot",
url="https://github.com/hummingbot/hummingbot",
author="Hummingbot Foundation",
author_email="[email protected]",
license="Apache 2.0",
packages=packages,
package_data=package_data,
install_requires=install_requires,
ext_modules=cythonize(cython_sources, compiler_directives=compiler_directives, **cython_kwargs),
include_dirs=[
np.get_include()
],
scripts=[
"bin/hummingbot_quickstart.py"
],
cmdclass={"build_ext": BuildExt},
)
if __name__ == "__main__":
main()