-
Notifications
You must be signed in to change notification settings - Fork 32
Expand file tree
/
Copy pathpyproject.toml
More file actions
64 lines (56 loc) · 1.32 KB
/
pyproject.toml
File metadata and controls
64 lines (56 loc) · 1.32 KB
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
64
[build-system]
requires = [
"setuptools>=80",
"setuptools_scm>=8",
"wheel"
]
build-backend = "setuptools.build_meta"
[project]
name = "chia_dev_tools"
description = "Chia development commands"
readme = "README.md"
requires-python = ">=3.10"
authors = [
{ name = "CNI", email = "hello@chia.net" },
]
license = "Apache-2.0"
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Topic :: Security :: Cryptography",
]
dynamic = ["version"]
dependencies = [
"packaging",
"pytest",
"pytest-asyncio",
"pytimeparse",
"anyio",
"chia-blockchain==2.7.0",
]
[project.optional-dependencies]
dev = [
"anyio",
"mypy",
"ruff==0.14.6",
"types-aiofiles",
"types-click",
"types-cryptography",
"types-setuptools",
"types-pyyaml",
"pre-commit",
]
[project.scripts]
cdv = "cdv.cmds.cli:main"
[project.urls]
"Bug Reports" = "https://github.com/Chia-Network/chia-dev-tools"
Source = "https://github.com/Chia-Network/chia-dev-tools"
Homepage = "https://github.com/Chia-Network"
[tool.setuptools]
include-package-data = true
[tool.setuptools.packages.find]
exclude = ["tests*"]
[tool.setuptools.package-data]
"*" = ["*.clvm", "*.clvm.hex", "*.clib", "*.clsp", "*.clsp.hex"]
[tool.setuptools_scm]