-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
41 lines (33 loc) · 1.02 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
[project]
name = "PydayNightFunkin"
description = "Friday Night Funkin' except reimplemented in Python using pyglet."
authors = [
{name = "Square789"},
]
readme = "README.md"
license = {file = "LICENSE"}
requires-python = ">=3.8"
classifiers = [
"Development Status :: 3 - Alpha",
"Environment :: GPU",
"Environment :: Win32 (MS Windows)",
"Environment :: X11 Applications",
"Intended Audience :: End Users/Desktop",
"License :: OSI Approved :: Apache Software License",
"Natural Language :: English",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python",
"Topic :: Games/Entertainment",
]
dynamic = ["dependencies", "version"]
[build-system]
requires = ["setuptools", "cython"]
build-backend = "setuptools.build_meta"
[tool.setuptools.dynamic]
dependencies = {file = ["requirements.txt"]}
version = {attr = "pyday_night_funkin.main_game.__version__"}
[tool.pyright]
exclude = ["_*", "dev_notes"]
reportOptionalMemberAccess = "none"
reportOptionalSubscript = "none"