-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
43 lines (37 loc) · 912 Bytes
/
Copy pathpyproject.toml
File metadata and controls
43 lines (37 loc) · 912 Bytes
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
[project]
name = "minecraft-mod-checker"
dynamic = ["version"]
authors = [
{ name="Matthew Clark", email="matt@mclark.me" }
]
description = "Compare Minecraft client and server mod directories"
keywords = [ "minecraft", "multiplayer", "modpack", "mods" ]
readme = "README.md"
license = "MIT"
requires-python = ">=3.11"
dependencies = [
"packaging"
]
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: System Administrators",
"Natural Language :: English"
]
[project.urls]
Repository = "https://github.com/MaffooClock/minecraft-mod-checker"
[tool.setuptools]
py-modules = ["compare_mods"]
[project.scripts]
compare-mods = "compare_mods:main"
[build-system]
requires = [
"setuptools>=80",
"setuptools-scm>=9.2"
]
build-backend = "setuptools.build_meta"
[tool.setuptools_scm]
[project.optional-dependencies]
dev = [
"pytest"
]