-
-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #17 from wiseaidev/update-package-metadata
Update package metadata
- Loading branch information
Showing
11 changed files
with
121 additions
and
132 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
[bumpversion] | ||
current_version = 1.2.4 | ||
commit = True | ||
tag = True | ||
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)(-(?P<stage>[^.]*))? | ||
serialize = | ||
{major}.{minor}.{patch}-{stage} | ||
{major}.{minor}.{patch} | ||
|
||
[bumpversion:part:stage] | ||
optional_value = stable | ||
first_value = stable | ||
values = | ||
alpha | ||
beta | ||
stable | ||
|
||
[bumpversion:file:b_rabbit/__init__.py] | ||
search = __version__ = '{current_version}' | ||
replace = __version__ = '{new_version}' |
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
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 |
---|---|---|
@@ -0,0 +1,93 @@ | ||
[build-system] | ||
requires = ["hatchling>=1.8.0"] | ||
build-backend = "hatchling.build" | ||
|
||
[project] | ||
name = "b_rabbit" | ||
dynamic = ["version"] | ||
description = "An abstract interface for RabbitMQ communication" | ||
readme = "README.rst" | ||
license = "MIT" | ||
requires-python = ">=3.4" | ||
authors = [ | ||
{ name = "Nidhal Baccouri", email = "nidhalbacc@gmail.com" }, | ||
] | ||
keywords = [ | ||
"b_rabbit", | ||
"rabbitmq", | ||
"RabbitMQ", | ||
"Microservices", | ||
"SOA", | ||
"MQTT", | ||
"AMQP", | ||
"Queues", | ||
"Messaging queue", | ||
"queue messaging", | ||
"publish-subscribe", | ||
"publish-pattern", | ||
"subscribe-pattern", | ||
"publish messaging", | ||
"subscribe messaging", | ||
"remote procedure call", | ||
"RPC" | ||
] | ||
classifiers = [ | ||
"Development Status :: 4 - Beta", | ||
"Intended Audience :: Developers", | ||
"Intended Audience :: Education", | ||
"Intended Audience :: Information Technology", | ||
"Intended Audience :: System Administrators", | ||
"Intended Audience :: Telecommunications Industry", | ||
"Operating System :: OS Independent", | ||
"Topic :: Communications", | ||
"Topic :: Home Automation", | ||
"Topic :: Internet :: Log Analysis", | ||
"Topic :: Software Development", | ||
"Topic :: System :: Networking", | ||
"License :: OSI Approved :: MIT License", | ||
"Natural Language :: English", | ||
"Programming Language :: Python :: 3", | ||
"Programming Language :: Python :: 3.5", | ||
"Programming Language :: Python :: 3.6", | ||
"Programming Language :: Python :: 3.7", | ||
"Programming Language :: Python :: 3.8" | ||
] | ||
dependencies = [ | ||
"rabbitpy~=2.0.1", | ||
] | ||
|
||
[project.optional-dependencies] | ||
dev = [ | ||
"pip", | ||
"bump2version", | ||
"wheel", | ||
"watchdog", | ||
"flake8", | ||
"tox", | ||
"coverage", | ||
"Sphinx", | ||
"twine", | ||
"rabbitpy", | ||
"pytest", | ||
"pytest-runner", | ||
"build", | ||
] | ||
test = [ | ||
"pytest", | ||
] | ||
|
||
[project.urls] | ||
Homepage = "https://github.com/nidhaloff/b_rabbit" | ||
|
||
[tool.hatch.version] | ||
path = "b_rabbit/__init__.py" | ||
|
||
[tool.hatch.build.targets.sdist] | ||
include = [ | ||
"/b_rabbit", | ||
] | ||
|
||
[tool.hatch.build.targets.wheel] | ||
packages = [ | ||
"/b_rabbit", | ||
] |
This file was deleted.
Oops, something went wrong.
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