-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
54 lines (46 loc) · 1.31 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
[build-system]
requires = ["setuptools", "setuptools-scm", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "tuxemon"
version = "0.4.35"
description = "Open source monster-fighting RPG"
readme = "README.md"
license = {file = "LICENSE"}
authors = [
{name = "William Edwards", email = "shadowapex@gmail.com"}
]
maintainers = [
{name = "Tuxemon Community"}
]
classifiers = [
"Intended Audience :: End Users/Desktop",
"Development Status :: 3 - Alpha",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Topic :: Games/Entertainment",
"Topic :: Games/Entertainment :: Role-Playing"
]
requires-python = ">=3.8"
dynamic = ["dependencies"]
[project.urls]
homepage = "https://www.tuxemon.org"
source = "https://github.com/Tuxemon/Tuxemon"
[project.gui-scripts]
tuxemon = "tuxemon.__main__:main"
[tool.setuptools]
include-package-data = true
[tool.setuptools.packages.find]
where = ["."]
include = ["tuxemon*"]
[tool.setuptools.dynamic]
dependencies = {file = "requirements.txt"}
[tool.black]
line-length = 79
target-version = ["py38"]
[tool.isort]
line_length = 79
profile = "black"
skip_gitignore = true