-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
32 lines (30 loc) · 882 Bytes
/
Copy pathpyproject.toml
File metadata and controls
32 lines (30 loc) · 882 Bytes
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
[project]
name = "circle-usdc-research"
version = "0.1.0"
description = "Private research dataset on Circle's USDC freeze and restrict history"
requires-python = ">=3.11"
dependencies = [
"pandas>=2.2",
"requests>=2.32",
"python-dotenv>=1.0",
"beautifulsoup4>=4.12",
"lxml>=5.2",
"pyyaml>=6.0",
"jupyter>=1.0",
"jinja2>=3.1",
"markdown>=3.6",
]
[project.optional-dependencies]
dev = [
"pytest>=8.0",
"pytest-mock>=3.12",
"responses>=0.25",
]
[tool.pytest.ini_options]
testpaths = ["tests"]
pythonpath = ["."]
# Disable `pytest-ethereum` plugin (shipped with `web3.tools`) to avoid
# environment-level import crashes unrelated to this project. The plugin
# is incompatible with some `eth_typing` versions found in shared Python
# environments. Safe to remove once the project uses a dedicated venv.
addopts = "-p no:pytest_ethereum"