-
Notifications
You must be signed in to change notification settings - Fork 3
/
pyproject.toml
40 lines (34 loc) · 965 Bytes
/
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
39
40
# [tool.poetry]
[project]
name = "xmas"
version = "2022.1"
description = "A cat, sitting on a wall, near a Xmas tree, is gazing starry picturesque night."
authors = [
{name = "Nasy", email = "[email protected]"},
]
dependencies = []
requires-python = ">=3.8,<4.0"
license = {text = "GPLv3+"}
readme = "README.md"
classifiers = [
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
]
[project.urls]
homepage = "https://github.com/nasyxx/xmas.py"
Repository = "https://github.com/nasyxx/xmas.py"
[project.scripts]
xmas = "xmas:main"
[tool.black]
line-length = 79
[tool.pdm]
includes = []
[tool.pdm.dev-dependencies]
dev = []
[build-system]
requires = ["pdm-pep517"]
build-backend = "pdm.pep517.api"