-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
49 lines (42 loc) · 1.4 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
[build-system]
requires = ["maturin>=1.1,<2.0"]
build-backend = "maturin"
[tool.maturin]
features = ["pyo3/extension-module"]
sdist-include = ["LICENSE", "README.md"]
[project]
name = "simular-evm"
version = "0.2.6"
requires-python = ">=3.10"
authors = [
{ name = "Dave Bryson", email = "[email protected]" },
]
license = "Apache-2.0"
readme = "README.md"
homepage = "https://github.com/simular-fi/simular"
repository = "https://github.com/simular-fi/simular"
documentation = "https://simular.readthedocs.io/en/latest/"
keywords = ["agent-based modeling", "ethereum", "solidity", "simulation"]
description = "smart-contract api and embedded ethereum virtual machine"
classifiers = [
"Programming Language :: Python",
"Programming Language :: Python :: 3.10",
"Programming Language :: Rust",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
]
dependencies = ["eth-abi>=4.1.0", "eth-utils>=2.2.0"]
[tool.hatch.envs.dev]
dependencies = [
"pytest>=7.4.0",
"black>=23.7.0",
"maturin>=1.1.0",
"sphinx>=7.2.6",
"sphinx_rtd_theme>=2.0.0",
]
[tool.hatch.envs.dev.scripts]
docs = "sphinx-build -M html docs docs/build"
[project.urls]
Source = "https://github.com/simular-fi/simular"
Documentation = "https://simular.readthedocs.io/en/latest/"
Issues = "https://github.com/simular-fi/simular/issues"