This repository was archived by the owner on Nov 12, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
75 lines (71 loc) · 2.08 KB
/
pyproject.toml
File metadata and controls
75 lines (71 loc) · 2.08 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
65
66
67
68
69
70
71
72
73
74
75
[project]
name = "python-dependency-reader"
version = "1.0.0"
description = "Comprehensive CLI tool for Python dependency analysis with advanced security and license checking capabilities"
readme = "README.md"
license = {file = "LICENSE"}
authors = [
{name = "Python Dependency Reader Contributors"}
]
maintainers = [
{name = "Python Dependency Reader Team"}
]
keywords = [
"dependency-analysis",
"security",
"license-compliance",
"python",
"requirements",
"vulnerability-scanner",
"pypi",
"cli-tool"
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Intended Audience :: Developers",
"Intended Audience :: System Administrators",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Security",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: System :: Software Distribution",
"Topic :: Utilities"
]
requires-python = ">=3.11"
dependencies = [
"click>=8.0.0",
"colorlog>=6.0.0",
"packaging>=21.0.0",
"requests>=2.25.0",
"toml>=0.10.0",
"psutil>=7.0.0",
]
[project.optional-dependencies]
dev = [
"pytest>=8.4.1",
"pytest-benchmark>=5.1.0",
"pytest-cov>=4.0.0",
"black>=22.0.0",
"flake8>=5.0.0",
"mypy>=0.991",
]
docs = [
"sphinx>=5.0.0",
"sphinx-rtd-theme>=1.0.0",
]
[project.urls]
Homepage = "https://replit.com/@username/python-dependency-reader"
Documentation = "https://github.com/username/python-dependency-reader/blob/main/docs/README.md"
Repository = "https://github.com/username/python-dependency-reader"
Changelog = "https://github.com/username/python-dependency-reader/blob/main/CHANGELOG.md"
"Bug Reports" = "https://github.com/username/python-dependency-reader/issues"
[project.scripts]
dependency-reader = "main:main"
dep-reader = "main:main"
[build-system]
requires = ["setuptools>=65", "wheel"]
build-backend = "setuptools.build_meta"