-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ci: make sure to generate _version.py with version metadata
- Loading branch information
1 parent
d666578
commit 9c956e5
Showing
6 changed files
with
32 additions
and
28 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
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
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 |
---|---|---|
|
@@ -9,16 +9,8 @@ description = "A simple asyncio.Protocol implementation designed for IRC" | |
readme = "README.md" | ||
license = "MIT" | ||
requires-python = ">=3.8" | ||
authors = [ | ||
{ name = "linuxdaemon", email = "[email protected]" }, | ||
] | ||
keywords = [ | ||
"async-irc", | ||
"asyncio", | ||
"asyncirc", | ||
"irc", | ||
"irc-framework", | ||
] | ||
authors = [{ name = "linuxdaemon", email = "[email protected]" }] | ||
keywords = ["async-irc", "asyncio", "asyncirc", "irc", "irc-framework"] | ||
classifiers = [ | ||
"Development Status :: 3 - Alpha", | ||
"License :: OSI Approved :: MIT License", | ||
|
@@ -29,10 +21,7 @@ classifiers = [ | |
"Programming Language :: Python :: 3.11", | ||
"Programming Language :: Python :: 3.12", | ||
] | ||
dependencies = [ | ||
"py-irclib>=0.4.0", | ||
"typing_extensions", | ||
] | ||
dependencies = ["py-irclib>=0.4.0", "typing_extensions"] | ||
|
||
[project.urls] | ||
Homepage = "https://github.com/TotallyNotRobots/async-irc" | ||
|
@@ -46,6 +35,9 @@ exclude = ["/.github"] | |
[tool.hatch.build.targets.wheel] | ||
packages = ["asyncirc"] | ||
|
||
[tool.hatch.build.hooks.vcs] | ||
version-file = "asyncirc/_version.py" | ||
|
||
[tool.hatch.env] | ||
requires = ["hatch-containers"] | ||
|
||
|
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