-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
49 lines (43 loc) · 1.2 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 = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "defigraph"
version = "0.1.1"
authors = [{ name = "Meek Msaki", email = "[email protected]" }]
description = "A package for creating a directed graphs based on DeFi protocols"
readme = "README.md"
requires-python = ">=3.10"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = [
"ipykernel>=6.29.5",
"load-dotenv>=0.1.0",
"matplotlib>=3.7.5",
"networkx>=3.4",
"pytest>=8.3.3",
"ruff>=0.7.4",
"web3>=7.5.0",
]
[project.urls]
Homepage = "https://github.com/mmsaki/defigraph"
Issues = "https://github.com/mmsaki/defigraph/issues"
[tool.pytest.ini_options]
pythonpath = [".", "src"]
addopts = ["--import-mode=importlib"]
[project.optional-dependencies]
dev = ["bumpver", "pytest"]
[tool.bumpver]
current_version = "0.1.0"
version_pattern = "MAJOR.MINOR.PATCH"
commit_message = "🏷️ bump version {new_version}"
tag_message = "{new_version}"
tag_scope = "default"
commit = true
tag = true
push = true
[tool.bumpver.file_patterns]
"pyproject.toml" = ['current_version = "{version}"']