-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
63 lines (56 loc) · 1.59 KB
/
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
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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.setuptools]
packages = ["verbs_examples"]
[project]
name = "verbs-examples"
version = "0.1.0"
description = "VERBS simulation examples"
license = {file = "LICENSE"}
readme = "README.md"
requires-python = ">=3.8"
keywords = ["ethereum", "agent-based modelling", "simulation", "defi"]
authors = [
{ name = "Jordan", email = "jordan@simtopia.ai" },
{ name = "Marc", email = "marc@simtopia.ai"}
]
maintainers = [
{ name = "Jordan", email = "jordan@simtopia.ai" },
{ name = "Marc", email = "marc@simtopia.ai"}
]
classifiers = [
"Programming Language :: Python",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Rust",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
]
dependencies = [
"verbs == 0.4.1",
"matplotlib",
"scipy",
"pandas",
"pyarrow"
]
[tool.hatch.envs.dev]
dependencies = [
"pre-commit >= 3.3.3",
]
[tool.hatch.envs.dev.scripts]
lint = "pre-commit install && pre-commit run --all-files"
[tool.hatch.envs.examples.scripts]
uniswap = "python uniswap_example.py {args}"
aave = "python aave_example.py {args}"
[tool.hatch.envs.docs]
dependencies = [
"sphinx >= 7.2.6",
"furo >= 2023.9.10",
"sphinx-copybutton >= 0.5.2",
]
[tool.hatch.envs.docs.scripts]
build = "pip list && sphinx-build -W -b html docs/source docs/build"
test = "sphinx-build -W -b doctest docs/source docs/build"