-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
55 lines (43 loc) · 1.06 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
55
[build-system]
requires = ["setuptools>=62.3"]
build-backend = "setuptools.build_meta"
[project]
name = "am2r_yams"
version = "2.9.0-rc3"
authors = [
{name = "Miepee"},
]
description = "An open source randomizer patcher for AM2R."
readme = "README.md"
license = {file = "LICENSE-CODE"}
requires-python = ">=3.11"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Development Status :: 3 - Alpha",
"Programming Language :: Python :: 3.11"
]
dependencies = [
"pythonnet",
]
[project.optional-dependencies]
test = [
"pytest",
"pytest-cov",
"pytest-mock",
]
[project.urls]
Repository = "https://github.com/randovania/YAMS"
# Entry Points for PyInstaller
[project.entry-points.pyinstaller40]
hook-dirs = "am2r_yams.__pyinstaller:get_hook_dirs"
[tool.setuptools]
packages = ["am2r_yams", "am2r_yams.__pyinstaller"]
[tool.setuptools.package-data]
"*" = ["yams/**"]
"yams_py.yams" = ["**"]
[tool.pytest.ini_options]
minversion = "6.0"
testpaths = [
"am2r_yams_tests",
]