-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
63 lines (54 loc) · 1.61 KB
/
pyproject.toml
File metadata and controls
63 lines (54 loc) · 1.61 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
[build-system]
requires = ["hatchling", "hatch-vcs"]
build-backend = "hatchling.build"
[project]
name = "netlicensing-mcp"
dynamic = ["version"]
description = "MCP server for the Labs64 NetLicensing license management API"
readme = "README.md"
license = { text = "Apache-2.0" }
requires-python = ">=3.12"
keywords = ["mcp", "netlicensing", "license-management", "labs64", "fastmcp"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.14",
"Topic :: Software Development :: Libraries",
]
dependencies = [
"mcp[cli]>=1.7.0",
"httpx>=0.27.0",
"python-dotenv>=1.0.0",
]
[project.optional-dependencies]
dev = [
"pytest>=8.0.0",
"pytest-asyncio>=0.23.0",
"pytest-cov>=5.0.0",
"ruff",
"mypy",
"pip-audit",
]
[project.urls]
Homepage = "https://github.com/Labs64/NetLicensing-MCP"
Repository = "https://github.com/Labs64/NetLicensing-MCP"
Issues = "https://github.com/Labs64/NetLicensing-MCP/issues"
[project.scripts]
netlicensing-mcp = "netlicensing_mcp.server:main"
[tool.hatch.version]
source = "vcs" # reads from git tag
[tool.hatch.build.targets.wheel]
packages = ["src/netlicensing_mcp"]
[tool.pytest.ini_options]
asyncio_mode = "auto"
testpaths = ["tests"]
addopts = "--cov=src/netlicensing_mcp --cov-report=term-missing --cov-report=xml"
[tool.coverage.run]
source = ["src/netlicensing_mcp"]
omit = ["tests/*"]
[tool.ruff]
line-length = 100
target-version = "py312"