Skip to content

Commit

Permalink
update pyproject.toml
Browse files Browse the repository at this point in the history
  • Loading branch information
adbenitez committed Feb 5, 2024
1 parent 24c6f92 commit 520e8cb
Showing 1 changed file with 8 additions and 5 deletions.
13 changes: 8 additions & 5 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,24 +1,24 @@
[build-system]
requires = ["setuptools"]
requires = ["setuptools>=64", "setuptools_scm>=8"]
build-backend = "setuptools.build_meta"

[project]
version = "0.3.0"
name = "webxdcbot"
description = "Example Delta Chat bot + webxdc app"
dynamic = ["version"]
readme = "README.md"
requires-python = ">=3.8"
license = {file = "LICENSE.txt"}
license = {file = "LICENSE"}
keywords = ["deltachat", "bot", "webxdc"]
authors = [
{name = "adbenitez", email = "adbenitez@merlinux.eu"},
{name = "adbenitez", email = "adb@merlinux.eu"},
]
classifiers = [
"Development Status :: 4 - Beta",
"Programming Language :: Python"
]
dependencies = [
"deltabot-cli>=2.0.0,<3.0",
"deltabot-cli>=3.0.0,<4.0",
"fortune-python",
]

Expand All @@ -35,6 +35,9 @@ dev = [
[project.scripts]
webxdcbot = "webxdcbot:main"

[tool.setuptools_scm]
# can be empty if no extra settings are needed, presence enables setuptools_scm

[tool.setuptools]
packages = [ "webxdcbot" ]
zip-safe = false
Expand Down

0 comments on commit 520e8cb

Please sign in to comment.