aboutsummaryrefslogtreecommitdiff
path: root/pyproject.toml
blob: 6e701ae45d9be962d750ce755365079e7ea85a62 (plain)
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
39
40
41
42
43
44
45
46
47
48
49
[project]
name = "rainbow-parenthesis"
description = "Add rainbow parenthesis to strings."
# Might work with lower, possibly test this.
requires-python = ">=3.10"
license = { file = "LICENSE" }
authors = [
	{ name = "Hugo Hörnquist", email = "hugo@lysator.liu.se" },
]
keywords = []
classifiers = [
	"Programming Language :: Python :: 3",
	"Development Status :: 4 - Beta",
	"Environment :: Console",
	"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
	"Intended Audience :: Developers",
	"Typing :: Typed",
]
dynamic = ["version"]

[project.urls]
homepage = "https://git.hornquist.se/rainbow-parenthesis"
repository = "https://git.hornquist.se/rainbow-parenthesis"

[project.scripts]
rainbow = "rainbow_parenthesis.__main__:main"

[project.optional-dependencies]
doc = [
	'sphinx'
]
check = [
	"mypy",
	"flake8",
]

[build-system]
requires = [
	"setuptools",
	"wheel",
]
build-backend = "setuptools.build_meta"
# requires = ["setuptools>=40.6.0"]

[tool.setuptools]
packages = ["rainbow_parenthesis"]

[tool.setuptools.dynamic]
version = {attr = "rainbow_parenthesis.__version__"}