-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
34 lines (28 loc) · 1.09 KB
/
pyproject.toml
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
34
[tool.pytest.ini_options]
pythonpath = "src"
addopts = [
"--import-mode=importlib",
]
[build-system]
requires = ["setuptools>=64", "setuptools_scm>=8"]
[project]
name = "talkgooder"
description = "Smooth out grammar, punctuation, and number-related corner cases when formatting text for human consumption"
readme = {file = "README.md", content-type = "text/markdown"}
maintainers = [{name = "Brian Warner", email = "[email protected]"}]
dynamic = ["version"]
requires-python = ">= 3.10"
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Topic :: Text Processing :: Linguistic",
"License :: OSI Approved :: MIT License",
]
[project.urls]
Homepage = "https://brianwarner.github.io/talkgooder/"
Documentation = "https://brianwarner.github.io/talkgooder/"
Repository = "https://github.com/brianwarner/talkgooder"
Issues = "https://github.com/brianwarner/talkgooder/issues"
[tool.setuptools_scm]
version_scheme = "no-guess-dev"
version_file = "_version.py"