-
Notifications
You must be signed in to change notification settings - Fork 38
/
pyproject.toml
58 lines (50 loc) · 1.36 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
[project]
name = "warnet"
version = "1.1.9"
description = "Monitor and analyze the emergent behaviours of bitcoin networks"
readme = "README.md"
requires-python = ">=3.9"
keywords = ["bitcoin", "warnet"]
license = {text = "MIT"}
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
dependencies = [
"click==8.1.7",
"docker==7.1.0",
"flask==3.0.3",
"inquirer==3.4.0",
"kubernetes==30.1.0",
"rich==13.7.1",
"tabulate==0.9.0",
"PyYAML==6.0.2",
"pexpect==4.9.0",
]
[project.scripts]
warnet = "warnet.main:cli"
warcli = "warnet.main:cli"
[project.urls]
Homepage = "https://warnet.dev"
GitHub = "https://github.com/bitcoindevproject/warnet"
Pypi = "https://pypi.org/project/warnet/"
[project.optional-dependencies]
build = [
"twine",
"build",
]
[build-system]
requires = ["setuptools>=64", "setuptools_scm>=8"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
include-package-data = true
[tool.setuptools.packages.find]
where = ["src", ".", "resources/scenarios"]
include = ["warnet*", "test_framework*", "resources*"]
[tool.setuptools.package-data]
"resources" = ["**/*"]