-
Notifications
You must be signed in to change notification settings - Fork 138
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
To build modern sdist and wheel. Signed-off-by: Inada Naoki <[email protected]>
- Loading branch information
Showing
6 changed files
with
67 additions
and
58 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 was deleted.
Oops, something went wrong.
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 @@ | ||
__version__ = '0.10.1dev1' |
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,54 @@ | ||
[build-system] | ||
requires = ["hatchling"] | ||
build-backend = "hatchling.build" | ||
|
||
[project] | ||
name = "fluent-logger" | ||
dynamic = ["version"] | ||
description = "A Python logging handler for Fluentd event collector" | ||
readme = "README.rst" | ||
license = { file = "COPYING" } | ||
requires-python = ">=3.7" | ||
authors = [ | ||
{ name = "Kazuki Ohta", email = "[email protected]" }, | ||
] | ||
maintainers = [ | ||
{ name = "Arcadiy Ivanov", email = "[email protected]" }, | ||
{ name = "Inada Naoki", email = "[email protected]" }, | ||
] | ||
classifiers = [ | ||
"Development Status :: 5 - Production/Stable", | ||
"Intended Audience :: Developers", | ||
"Programming Language :: Python :: 3", | ||
"Programming Language :: Python :: 3.7", | ||
"Programming Language :: Python :: 3.8", | ||
"Programming Language :: Python :: 3.9", | ||
"Programming Language :: Python :: 3.10", | ||
"Programming Language :: Python :: 3.11", | ||
"Programming Language :: Python :: 3.12", | ||
"Programming Language :: Python :: Implementation :: CPython", | ||
"Programming Language :: Python :: Implementation :: PyPy", | ||
"Topic :: System :: Logging", | ||
] | ||
dependencies = [ | ||
"msgpack>=1.0", | ||
] | ||
|
||
[project.urls] | ||
Download = "https://pypi.org/project/fluent-logger/" | ||
Homepage = "https://github.com/fluent/fluent-logger-python" | ||
|
||
[tool.hatch.version] | ||
path = "fluent/__about__.py" | ||
|
||
[tool.hatch.build.targets.sdist] | ||
exclude = [ | ||
"/.github", | ||
"/.tox", | ||
"/.venv", | ||
] | ||
|
||
[tool.hatch.build.targets.wheel] | ||
include = [ | ||
"/fluent", | ||
] |