-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
43 lines (38 loc) · 1.08 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
[build-system]
requires = ["setuptools >= 75.0"]
build-backend = "setuptools.build_meta"
[project]
version = "0.1.2"
name = "ezmse"
dependencies = [
"pyfakefs>=5.2"
]
requires-python = ">= 3.11"
authors = [
{name = "Tom Tkacz", email = "[email protected]"}
]
description = "A Python package for generating custom Magic: The Gathering cards"
readme = "README.md"
license = {file = "LICENSE"}
keywords = ["magic the gathering","mtg","magic set editor","mse"]
classifiers = [
"Environment :: Console",
"Intended Audience :: End Users/Desktop",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.11",
"Topic :: Games/Entertainment",
]
[tool.setuptools.packages.find]
where = ["."]
[tool.setuptools.package-data]
ezmse = ["include/*"]
[project.urls]
Homepage = "https://www.thomastkacz.com/portfolio/"
Repository = "https://github.com/TomTkacz/EasyMSE"
Issues = "https://github.com/TomTkacz/EasyMSE/issues"
[project.optional-dependencies]
dev = [
"pytest>=7.4"
]