-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
57 lines (48 loc) · 1.6 KB
/
Copy pathpyproject.toml
File metadata and controls
57 lines (48 loc) · 1.6 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
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "wnm"
authors = [
{name = "Troy Johnson", email = "troy@weave.sh"}
]
description = "Manager for Autonomi nodes"
license = {text = "GPL-3.0"}
keywords = ["Autonomi", "antnode", "weave", "xd7"]
dynamic = ["version", "dependencies", "optional-dependencies"]
readme = {file = "README.md", content-type = "text/markdown"}
requires-python = ">=3.12.3"
classifiers = [
"Development Status :: 3 - Alpha",
"Environment :: Console",
"Intended Audience :: Developers",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3.12",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: System :: Distributed Computing",
]
[project.urls]
Repository = "https://github.com/iweave/weave-node-manager.git"
Issues = "https://github.com/iweave/weave-node-manager/issues"
[project.scripts]
wnm = "wnm.__main__:main"
[tool.setuptools.dynamic]
dependencies = { file = ["requirements.txt"] }
optional-dependencies.dev = { file = ["requirements-dev.txt"] }
version = {attr = "wnm.__version__"}
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools]
include-package-data = true
[tool.black]
line-length = 88
[tool.isort]
profile = "black"
[tool.pytest.ini_options]
markers = [
"linux_only: tests that require Linux (systemd, ufw, etc.)",
"macos_only: tests that require macOS (launchd, etc.)",
"requires_docker: tests that require Docker",
"integration: integration tests (slow)",
]