-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
38 lines (32 loc) · 1.12 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
35
36
37
38
[tool.pytest.ini_options]
pythonpath = "src"
addopts = [
"--import-mode=importlib",
]
[build-system]
requires = ["setuptools>=64", "setuptools_scm>=8"]
[project]
name = "indifferent"
description = "Compare two strings, calculate the match, and display the difference"
readme = {file = "README.md", content-type = "text/markdown"}
maintainers = [{name = "Brian Warner", email = "brian@bdwarner.com"}]
dynamic = ["version"]
requires-python = ">= 3.10"
dependencies = [
"rich",
"talkgooder",
]
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/indifferent/"
Documentation = "https://brianwarner.github.io/indifferent/"
Repository = "https://github.com/brianwarner/indifferent"
Issues = "https://github.com/brianwarner/indifferent/issues"
[tool.setuptools_scm]
version_scheme = "no-guess-dev"
version_file = "_version.py"