-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
59 lines (51 loc) · 1.4 KB
/
pyproject.toml
File metadata and controls
59 lines (51 loc) · 1.4 KB
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
50
51
52
53
54
55
56
57
58
59
#https://packaging.python.org/en/latest/tutorials/packaging-projects/
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "pybeaut"
description = "A python library for styling terminal outputs."
version = "1.1.5"
readme = "README.md"
requires-python = ">=3.6"
authors = [
{name= "Backest", email= "alvarodrumer54@gmail.com"},
]
maintainers = [
{name= "Backest", email= "alvarodrumer54@gmail.com"},
{name= "TheWisker", email= "thewisker@protonmail.com"}
]
classifiers = [
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Environment :: Console",
"Development Status :: 4 - Beta",
"Operating System :: Microsoft :: Windows :: Windows 10",
"Typing :: Typed",
]
keywords = [
"Python",
"Python3",
"Python3 tools",
"Python-tools",
"Miscellaneous tools",
"Pystyle",
"Python-stylize",
"Python3-stylize",
"Python pretty-prints",
]
[project.urls]
"Author repository" = "https://github.com/Backist/"
"repository" = "https://github.com/Backist/pybeaut"
"Bug issues" = "https://github.com/Backist/pybeaut/issues"
[tool.mypy]
python_version = "3.10"
strict = true
[dependency-groups]
dev = [
"pytest>=7.0.1",
]