forked from cartography-cncf/cartography
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
163 lines (156 loc) · 4.92 KB
/
Copy pathpyproject.toml
File metadata and controls
163 lines (156 loc) · 4.92 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
[build-system]
requires = [
"setuptools",
"setuptools-scm",
"wheel"
]
build-backend = "setuptools.build_meta"
[tool.setuptools_scm]
# See configuration details in https://github.com/pypa/setuptools_scm
write_to = "cartography/_version.py"
fallback_version = "0.0.0"
[project]
name = "cartography"
description = "Explore assets and their relationships across your technical infrastructure."
readme = "README.md"
license = "Apache-2.0"
license-files = ["LICENSE"]
maintainers = [
{ name = "Cartography Contributors" }
]
classifiers = [
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Natural Language :: English',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
'Programming Language :: Python :: 3.13',
'Topic :: Security',
'Topic :: Software Development :: Libraries',
'Topic :: Software Development :: Libraries :: Python Modules',
]
requires-python = ">=3.10"
# By convention (per pip/uv recommendations), dependencies should use a loose
# lower bound and no upper bound unless explicitly needed. Exact pinning is
# handled by the lockfile (uv.lock).
dependencies = [
"backoff>=2.1.2",
"boto3>=1.15.1",
"aioboto3>=15.0.0",
"httpx>=0.24.0",
"botocore>=1.18.1",
"dnspython>=2.0.0",
"neo4j>=6.0.0",
"policyuniverse>=1.1.0.0",
"google-api-python-client>=2.0.0",
"google-auth>=2.37.0",
"google-cloud-storage>=2.0.0",
"marshmallow>=4.0.0",
"oci>=2.71.0",
# Pinned to <1.0.0 due to breaking changes. See #1243 for upgrade.
"okta<1.0.0",
"PyJWT[crypto]>=2.0.0",
"cryptography>=45.0.0",
"pyyaml>=5.3.1",
"requests>=2.22.0",
"statsd>=4.0.0",
"packaging>=26.0.0",
"packageurl-python>=0.17.0",
"python-digitalocean>=1.16.0",
"adal>=1.2.4",
"azure-cli-core>=2.26.0",
"azure-mgmt-compute>=5.0.0",
"azure-mgmt-containerinstance>=10.0.0",
"azure-mgmt-keyvault>=10.0.0",
"azure-mgmt-resource>=24.0.0,<25",
"azure-mgmt-cosmosdb>=6.0.0",
"azure-mgmt-web>=7.0.0",
"azure-mgmt-eventgrid>=10.0.0",
"azure-mgmt-logic>=10.0.0",
"azure-mgmt-eventhub>=10.1.0",
"azure-keyvault-secrets>=4.0.0",
"azure-keyvault-keys>=4.0.0",
"azure-keyvault-certificates>=4.0.0",
"azure-mgmt-datafactory>=8.0.0",
"azure-mgmt-containerservice>=41.0.0",
"azure-mgmt-network>=25.0.0",
"azure-mgmt-security>=5.0.0",
"azure-mgmt-monitor>=3.0.0",
"azure-mgmt-managementgroups>=1.0.0",
"msrestazure>=0.6.4",
"azure-mgmt-storage>=16.0.0",
"azure-mgmt-sql>=3.0.1",
"azure-mgmt-authorization>=0.60.0",
"azure-identity>=1.5.0",
"azure-storage-blob>=12.0.0",
"msgraph-sdk>=1.53.0",
"kubernetes>=22.6.0",
"pagerduty>=4.0.1",
"crowdstrike-falconpy>=0.5.1",
"python-dateutil>=2.9.0",
"xmltodict>=1.0.0",
"duo-client>=5.5.0",
"cloudflare>=4.1.0",
"scaleway>=2.10.0",
"google-cloud-resource-manager>=1.14.2",
"google-cloud-asset>=1.0.0",
"google-cloud-artifact-registry>=1.21.0",
"google-cloud-aiplatform>=1.127.0",
"google-cloud-run>=0.13.0",
"types-aiobotocore-ecr>=3.1.0",
"typer>=0.9.0",
"azure-mgmt-synapse>=2.0.0",
"azure-synapse-artifacts>=0.17.0",
"slack-sdk>=3.37.0",
"workos>=6.0.5",
# tomllib is stdlib on 3.11+; tomli provides it on 3.10 (used by the GitHub
# lockfile fallback parser).
"tomli>=2.0.0; python_version < '3.11'",
]
# Comes from Git tag
dynamic = [ "version" ]
[dependency-groups]
dev = [
"moto>=5.0.0",
"pre-commit>=4.0.0",
"pytest>=6.2.4",
"pytest-mock>=3.15.0",
"pytest-cov>=7.0.0",
"pytest-rerunfailures>=16.0.0",
"pytest-asyncio>=1.0.0",
"testcontainers>=4.14.0",
"types-PyYAML>=6.0.0",
"black>=26.0.0",
"types-requests>=2.32.0",
]
doc = [
"myst-parser[linkify]>=4.0.1",
"shibuya>=2025.4.25",
"sphinx>=8.1.3",
"sphinx-autobuild>=2024.10.3",
"sphinx-copybutton>=0.5.2",
"sphinxcontrib-mermaid>=1.0.0",
]
# Makes sure to look inside cartography/cartography/ for cli command
[tool.setuptools.packages.find]
where = ["."]
include = ["cartography*"]
[project.scripts]
cartography = "cartography.cli:main"
cartography-detectdrift = "cartography.driftdetect.cli:main"
cartography-rules = "cartography.rules.cli:main"
[tool.setuptools.package-data]
"cartography" = ["py.typed"]
"cartography.data" = ["*.cypher", "*.yaml"]
"cartography.data.jobs.analysis" = ["*.json"]
"cartography.data.jobs.scoped_analysis" = ["*.json"]
"cartography.data.jobs.cleanup" = ["*.json"]
[project.urls]
Homepage = "https://cartography-cncf.github.io/cartography"
Documentation = "https://cartography-cncf.github.io/cartography"
Repository = "https://github.com/cartography-cncf/cartography"
Issues = "https://github.com/cartography-cncf/cartography/issues"
Changelog = "https://github.com/cartography-cncf/cartography/releases"