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
160 lines (153 loc) · 4.63 KB
/
pyproject.toml
File metadata and controls
160 lines (153 loc) · 4.63 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
[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',
'Topic :: Security',
'Topic :: Software Development :: Libraries',
'Topic :: Software Development :: Libraries :: Python Modules',
]
requires-python = ">=3.10"
dependencies = [
"backoff>=2.1.2",
"boto3>=1.15.1",
"aioboto3>=13.0.0",
"httpx>=0.24.0",
"botocore>=1.18.1",
"dnspython>=1.15.0",
"neo4j (>=5.28.2,<6.0.0)",
"policyuniverse>=1.1.0.0",
"google-api-python-client>=1.7.8",
"google-auth>=2.37.0",
"marshmallow>=3.0.0rc7",
"oci>=2.71.0",
"okta<1.0.0",
"pyyaml>=5.3.1",
"requests>=2.22.0",
"statsd",
"packaging",
"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>=10.2.0",
"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>=30.0.0",
"azure-mgmt-network>=25.0.0",
"azure-mgmt-security>=5.0.0",
"azure-mgmt-monitor>=3.0.0",
"msrestazure >= 0.6.4",
"azure-mgmt-storage>=16.0.0",
"azure-mgmt-sql<=1.0.0",
"azure-mgmt-authorization>=0.60.0",
"azure-identity>=1.5.0",
"msgraph-sdk",
"kubernetes>=22.6.0",
"pdpyras>=4.3.0",
"crowdstrike-falconpy>=0.5.1",
"python-dateutil",
"xmltodict",
"duo-client",
"cloudflare (>=4.1.0,<5.0.0)",
"scaleway>=2.10.0",
"google-cloud-resource-manager>=1.14.2",
"google-cloud-asset>=1.0.0",
"types-aiobotocore-ecr",
"typer>=0.9.0",
"azure-mgmt-synapse>=2.0.0",
"azure-synapse-artifacts>=0.17.0",
"slack-sdk>=3.37.0",
]
# Comes from Git tag
dynamic = [ "version" ]
# TODO when moving to uv or something other than pip, move this to [dependency-groups].dev.
[dependency-groups]
dev = [
"backoff>=2.1.2",
"moto",
"pre-commit",
"pytest>=6.2.4",
"pytest-mock",
"pytest-cov==7.0.0",
"pytest-rerunfailures",
"pytest-asyncio",
"types-PyYAML",
"black==25.12.0",
"types-requests<2.32.4.20250914",
"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-mgmt-keyvault>=10.0.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>=30.0.0",
"azure-mgmt-containerinstance>=10.0.0",
"azure-mgmt-synapse>=2.0.0",
"azure-synapse-artifacts>=0.17.0",
"azure-mgmt-network>=25.0.0",
"azure-mgmt-security>=5.0.0",
"azure-mgmt-monitor>=3.0.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"