-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpyproject.toml
37 lines (31 loc) · 918 Bytes
/
pyproject.toml
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
[tool.poetry]
name = "git-remote-s3"
version = "0.2.3"
description = "A git remote helper for Amazon S3"
authors = ["Massimiliano Angelino <[email protected]>"]
repository = "https://github.com/awslabs/git-remote-s3"
classifiers = [
"Topic :: Software Development :: Version Control",
"Topic :: Software Development :: Version Control :: Git"
]
license = "Apache-2.0"
readme = "README.md"
[tool.poetry.scripts]
git-remote-s3 = "git_remote_s3.remote:main"
"git-remote-s3+zip" = "git_remote_s3.remote:main"
git-lfs-s3 = "git_remote_s3.lfs:main"
git-s3 = "git_remote_s3.manage:main"
[tool.poetry.dependencies]
python = ">3.9"
boto3 = "^1.34.155"
[tool.poetry.group.dev.dependencies]
flake8 = "^7.1.1"
flake8-bugbear = "^24.4.26"
mypy = "^1.11.1"
pytest = "^8.3.2"
mock = "^5.1.0"
black = "^24.8.0"
coverage = "^7.6.1"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"