-
Notifications
You must be signed in to change notification settings - Fork 38
Expand file tree
/
Copy pathpyproject.toml
More file actions
75 lines (65 loc) · 1.96 KB
/
pyproject.toml
File metadata and controls
75 lines (65 loc) · 1.96 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "trailscraper"
version = "0.10.1"
description = "A command-line tool to get valuable information out of AWS CloudTrail"
readme = "README.md"
requires-python = ">=3.10"
license = {text = "Apache License 2.0"}
authors = [
{name = "Florian Sellmayr", email = "[email protected]"}
]
keywords = ["aws", "cloud", "iam", "cloudtrail", "trailscraper"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Intended Audience :: System Administrators",
"License :: OSI Approved :: Apache Software License",
"Topic :: Software Development :: Code Generators",
"Topic :: Utilities",
"Topic :: System :: Systems Administration",
"Topic :: Security",
"Natural Language :: English",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
]
dependencies = [
"boto3==1.42.68",
"click==8.1.8",
"toolz==1.1.0",
"dateparser==1.3.0",
"pytz==2026.1.post1",
"ruamel.yaml==0.19.1",
]
[project.optional-dependencies]
dev = [
"bumpversion==0.6.0",
"pylint==4.0.5",
"pytest==9.0.2",
"freezegun==1.5.5",
"moto==4.2.14",
]
[project.scripts]
trailscraper = "trailscraper.cli:root_group"
[project.urls]
Homepage = "http://github.com/flosell/trailscraper"
[tool.uv]
python-preference = "only-system"
[tool.hatchling.build.targets.wheel]
packages = ["trailscraper"]
[tool.bumpversion]
current_version = "0.10.1"
commit = true
tag = false
[tool.bumpversion.files."pyproject.toml"]
search = 'version = "{current_version}"'
replace = 'version = "{new_version}"'
[tool.bumpversion.files."trailscraper/__init__.py"]
search = '__version__ = "{current_version}"'
replace = '__version__ = "{new_version}"'