-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
38 lines (36 loc) · 988 Bytes
/
pyproject.toml
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
[project]
name = "cream_bots"
version = "1.0"
authors = [
{ name="salparadi", email="[email protected]" },
]
description = "Bots for EVM chains, using CREAM."
readme = "README.md"
requires-python = ">=3.10"
dependencies = [
"eth-ape",
"degenbot",
"networkx",
"redis",
"tqdm",
"ujson"
]
license = {text = "MIT"}
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Natural Language :: English",
"Operating System :: POSIX",
]
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[project.scripts]
cream_bots = "cream_bots.main:run"
cream_lps_v2 = "cream_bots.builders.lp_fetcher_v2:main"
cream_lps_v3 = "cream_bots.builders.lp_fetcher_v3:main"
cream_liquidity = "cream_bots.builders.liquidity_fetcher:main"
cream_arbs_2pool = "cream_bots.builders.arbs_2pool:main"
cream_arbs_3pool = "cream_bots.builders.arbs_3pool:main"