-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
33 lines (28 loc) · 752 Bytes
/
pyproject.toml
File metadata and controls
33 lines (28 loc) · 752 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
[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.1.0"
license = {file = "LICENSE"}
requires-python = ">=3.8"
dynamic = ["dependencies"]
[tool.setuptools.dynamic]
dependencies = {file = ["requirements.txt"]}
[tool.pytest.ini_options]
pythonpath = [
"src"
]
[tool.commitizen]
name = "cz_conventional_commits"
tag_format = "$version"
version_scheme = "pep440"
version_provider = "pep621"
major_version_zero = true
version_files = [
"src/pyplayht/__init__.py:__version__",
]
[project.urls]
Repository = "https://github.com/dobizz/pyplayht"