-
-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: ensure pyproject.toml has lock (#5409)
- Loading branch information
1 parent
4730296
commit 8cde561
Showing
3 changed files
with
82 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
46 changes: 46 additions & 0 deletions
46
core/src/test/resources/python-myproject-toml/pyproject.toml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
[build-system] | ||
requires = ["setuptools"] | ||
build-backend = "setuptools.build_meta" | ||
|
||
[project] | ||
name = "s3-metadata-tagger" | ||
version = "1.0.1" | ||
description = "A package to add metadata tags to objects saved in s3" | ||
readme = "README.md" | ||
requires-python = ">=3.7" | ||
keywords = ["aws", "s3", "metadata"] | ||
license = { file="LICENSE" } | ||
classifiers = [ | ||
"Development Status :: 5 - Production/Stable", | ||
"Programming Language :: Python :: 3", | ||
"License :: OSI Approved :: MIT License", | ||
"Operating System :: OS Independent", | ||
"Intended Audience :: Developers", | ||
"License :: OSI Approved :: BSD License", | ||
"Operating System :: POSIX :: Linux", | ||
"Topic :: Multimedia", | ||
] | ||
dependencies = [ | ||
"autopep8", | ||
"boto3", | ||
"boto3-stubs", | ||
"botocore", | ||
"botocore-stubs", | ||
"mypy-boto3-s3", | ||
"pycodestyle", | ||
"typing_extensions", | ||
] | ||
|
||
[project.optional-dependencies] | ||
pdf = ["PyPDF2"] | ||
picture = ["Pillow", "types-Pillow"] | ||
|
||
[project.urls] | ||
"Homepage" = "https://github.com/DDS-GmbH/s3-metadata-tagger-lib/" | ||
"Bug Tracker" = "https://github.com/DDS-GmbH/s3-metadata-tagger-lib/issues" | ||
|
||
[tool.setuptools.packages.find] | ||
where = ["src"] | ||
|
||
[tool.setuptools.package-data] | ||
metadata_tagger = ["py.typed"] |