-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
56 lines (53 loc) · 1.69 KB
/
pyproject.toml
File metadata and controls
56 lines (53 loc) · 1.69 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
[build-system]
requires = ["maturin>=1.8,<2.0"]
build-backend = "maturin"
[project]
name = "dependency-check-updates"
version = "0.1.6"
description = "Fast multi-ecosystem dependency updater: package.json, Cargo.toml, pyproject.toml in a single CLI (like npm-check-updates for every language)"
requires-python = ">=3.11"
readme = "../../README.md"
license = { text = "MIT" }
authors = [
{ name = "dev-five-git" },
]
keywords = [
"dependency",
"dependencies",
"update",
"updater",
"ncu",
"npm-check-updates",
"npm",
"cargo",
"pypi",
"cli",
"rust",
"multi-ecosystem",
]
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Rust",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
"Topic :: Software Development",
"Topic :: Software Development :: Build Tools",
]
[project.urls]
Homepage = "https://github.com/dev-five-git/dependency-check-updates"
Repository = "https://github.com/dev-five-git/dependency-check-updates"
Issues = "https://github.com/dev-five-git/dependency-check-updates/issues"
Changelog = "https://github.com/dev-five-git/dependency-check-updates/releases"
[tool.maturin]
bindings = "bin"
strip = true