-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpyproject.toml
More file actions
36 lines (30 loc) · 939 Bytes
/
pyproject.toml
File metadata and controls
36 lines (30 loc) · 939 Bytes
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
[project]
name = "bucketcloner"
version = "0.3.0"
authors = [{ name = "Philipp Lies", email = "phil@lies.io" }]
description = "Clone all repositories from a Bitbucket workspace."
readme = "README.md"
requires-python = ">=3.8"
classifiers = [
"Programming Language :: Python :: 3",
"Development Status :: 4 - Beta",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
]
dependencies = ["gitpython>=3.1.45", "requests>=2.32.4"]
[build-system]
requires = ["uv_build>=0.9.11,<0.10.0"]
build-backend = "uv_build"
[dependency-groups]
dev = [
"pre-commit>=3.5.0",
"pytest>=8.3.5",
"ruff>=0.14.10",
"ty>=0.0.8",
"types-requests>=2.32.0.20241016",
]
[project.urls]
"Homepage" = "https://github.com/phillies/bucketcloner"
"Bug Tracker" = "https://github.com/phillies/bucketcloner/issues"
[project.scripts]
bucketcloner = "bucketcloner.main:entry_point"