Skip to content

Commit

Permalink
build(pyproject.toml,setup.py): update descriptions and metadata
Browse files Browse the repository at this point in the history
  • Loading branch information
dobizz committed Nov 5, 2023
1 parent 806d52f commit e6ea9ed
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 0 deletions.
11 changes: 11 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,14 @@
[build-system]
requires = ["setuptools", "setuptools-scm"]
build-backend = "setuptools.build_meta"

[project]
name = "pyplayht"
description = "Python wrapper for PlayHT REST API"
authors = [{name = "dobizz", email = "ronnie.code@outlook.com"}]
version = "0.0.0"
license = {file = "LICENSE"}
requires-python = ">=3.8"
dynamic = ["dependencies"]

[tool.setuptools.dynamic]
Expand All @@ -20,3 +28,6 @@ major_version_zero = true
version_files = [
"src/pyplayht/__init__.py:__version__",
]

[project.urls]
Repository = "https://github.com/dobizz/pyplayht"
2 changes: 2 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,6 @@
setup(
packages=find_packages(where="src"),
package_dir={"": "src"},
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
)

0 comments on commit e6ea9ed

Please sign in to comment.