Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bind pyproject.toml to package. #29

Merged
merged 2 commits into from
Dec 5, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"

[project]
name = "pyPolarionCli"
version = "1.2.0"
version = "1.2.1"
description = "pyPolarionCli is a command-line tool designed for easy access to Polarion work items, e.g. for metric creation."
readme = "README.md"
requires-python = ">=3.9"
Expand Down Expand Up @@ -44,3 +44,6 @@ pyPolarionCli = "pyPolarionCli.__main__:main"
pythonpath = [
"src"
]

[tool.setuptools.package-data]
pyPolarionCli = ["pyproject.toml"]
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@ license_files = LICENSE
classifiers =
License :: OSI Approved :: BSD 3-Clause
Operating System :: OS Independent
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
project_urls =
Documentation = https://github.com/NewTec-GmbH/pyPolarionCli
Source = https://github.com/NewTec-GmbH/pyPolarionCli
Expand Down
Loading