forked from hummingbot/hummingbot
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
169 lines (149 loc) · 4.75 KB
/
setup.py
File metadata and controls
169 lines (149 loc) · 4.75 KB
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
166
167
168
169
import fnmatch
import os
import subprocess
import sys
import numpy as np
from Cython.Build import cythonize
from setuptools import find_packages, setup
from setuptools.command.build_ext import build_ext
is_posix = (os.name == "posix")
# 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 = "20260126"
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 = [
"aiohttp>=3.8.5",
"asyncssh>=2.13.2",
"aioprocessing>=2.0.1",
"aioresponses>=0.7.4",
"aiounittest>=1.4.2",
"async-timeout>=4.0.2,<5",
"bidict>=0.22.1",
"bip-utils",
"cachetools>=5.3.1",
"commlib-py>=0.11",
"cryptography>=41.0.2",
"eth-account>=0.13.0",
"injective-py",
"msgpack-python",
"numba>=0.61.2",
"numpy>=2.2.6",
"objgraph",
"pandas>=2.3.2",
"pandas-ta>=0.4.71b",
"prompt_toolkit>=3.0.39",
"protobuf>=4.23.3",
"psutil>=5.9.5",
"pydantic>=2",
"pyjwt>=2.3.0",
"pyperclip>=1.8.2",
"requests>=2.31.0",
"ruamel.yaml>=0.2.5",
"safe-pysha3",
"scalecodec",
"scipy>=1.11.1",
"six>=1.16.0",
"sqlalchemy>=1.4.49",
"tabulate>=0.9.0",
"TA-Lib>=0.6.4",
"tqdm>=4.67.1",
"ujson>=5.7.0",
"urllib3>=1.26.15,<2.0",
"web3",
"xrpl-py>=4.1.0",
"PyYaml>=0.2.5",
]
# --- 1. Define Flags (But don't pass them to Cython yet) ---
extra_compile_args = []
extra_link_args = []
if is_posix:
os_name = subprocess.check_output("uname").decode("utf8")
if "Darwin" in os_name:
# macOS specific flags
extra_compile_args.extend(["-stdlib=libc++", "-std=c++11"])
extra_link_args.extend(["-stdlib=libc++", "-std=c++11"])
else:
# Linux/POSIX flags
extra_compile_args.append("-std=c++11")
extra_link_args.append("-std=c++11")
if os.environ.get("WITHOUT_CYTHON_OPTIMIZATIONS"):
extra_compile_args.append("-O0")
# --- 2. Setup Cython Options (Without the flags) ---
cython_kwargs = {
"language": "c++",
"language_level": 3,
}
if is_posix:
cython_kwargs["nthreads"] = cpu_count
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 "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}")
# --- 3. Generate Extensions & Manually Apply Flags ---
extensions = cythonize(
cython_sources,
compiler_directives=compiler_directives,
**cython_kwargs
)
for ext in extensions:
ext.extra_compile_args = extra_compile_args
ext.extra_link_args = extra_link_args
# --- 4. Pass the modified extensions to setup ---
setup(
name="hummingbot",
version=version,
description="Hummingbot",
url="https://github.com/hummingbot/hummingbot",
author="Hummingbot Foundation",
author_email="dev@hummingbot.org",
license="Apache 2.0",
packages=packages,
package_data=package_data,
install_requires=install_requires,
ext_modules=extensions, # <--- Use the list we modified
include_dirs=[
np.get_include()
],
scripts=[
"bin/hummingbot_quickstart.py"
],
cmdclass={"build_ext": BuildExt},
)
if __name__ == "__main__":
main()