Skip to content

Commit

Permalink
Fix build scripts
Browse files Browse the repository at this point in the history
  • Loading branch information
acatiadroid committed Jun 6, 2024
1 parent f3b84a5 commit caa3347
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ requires = [
[project]
name = "pybloxlink"
description = "An API wrapper for the Bloxlink API."
readme = { file = "README.md" content-type = "text/x-rst" }
readme = { file = "README.md", content-type = "text/markdown" }
license = { file = "LICENSE.txt" }
requires-python = ">=3.8"
authors = [{ name = "acatia" }]
Expand All @@ -19,8 +19,8 @@ classifiers = [
"Operating System :: MacOS :: MacOS X",
"Operating System :: Microsoft :: Windows",
]
dynamic = ["version"]

[project.urls]
Documentation = "https://acatiadroid.github.io/pybloxlink"
GitHub = "https://github.com/acatiadroid/pybloxlink"
dynamic = ["version"]
GitHub = "https://github.com/acatiadroid/pybloxlink"
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@
with open('./bloxlink/__init__.py') as f:
version = re.search(r'^__version__\s*=\s*[\'"]([^\'"]*)[\'"]', f.read(), re.MULTILINE).group(1)

setup(version=version)
setup(version=str(version))

0 comments on commit caa3347

Please sign in to comment.