chore: build fixes

This commit is contained in:
J. Nick Koston 2022-09-09 09:17:51 -05:00
parent 0ab9fabe2f
commit 4927a1e799
2 changed files with 10 additions and 8 deletions

View File

@ -8,7 +8,7 @@ readme = "README.md"
repository = "https://github.com/bluetooth-devices/dbus-fast"
documentation = "https://dbus-fast.readthedocs.io"
classifiers = [
"Development Status :: 2 - Pre-Alpha",
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Natural Language :: English",
"Operating System :: OS Independent",
@ -45,7 +45,7 @@ pytest-asyncio = "^0.19.0"
[tool.semantic_release]
branch = "main"
version_toml = "pyproject.toml:tool.poetry.version"
version_variable = "src/dbus_fast/__init__.py:__version__"
version_variable = "src/dbus_fast/__version__.py:__version__"
build_command = "pip install poetry && poetry build"
[tool.pytest.ini_options]

View File

@ -1,8 +1,10 @@
__title__ = "dbus_fast"
__description__ = "A zero-dependency DBus library for Python with asyncio support"
__url__ = "https://github.com/altdesktop/python-dbus-fast"
__version__ = "0.2.3"
__author__ = "Tony Crisci"
__author_email__ = "tony@dubstepdish.com"
__description__ = (
"A performant zero-dependency DBus library for Python with asyncio support"
)
__url__ = "https://github.com/bluetooth-devices/dbus-fast"
__version__ = "1.0.0"
__author__ = "Bluetooth Devices authors, Tony Crisci"
__author_email__ = "bluetooth@koston.org"
__license__ = "MIT"
__copyright__ = "Copyright 2019 Tony Crisci"
__copyright__ = "Copyright 2022 Bluetooth Devices authors, 2019 Tony Crisci"