-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
39 lines (36 loc) · 950 Bytes
/
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
[build-system]
requires = [
"setuptools>=68.0",
"wheel"
]
build-backend = "setuptools.build_meta"
[project]
name = "ftb-snbt-lib"
authors = [
{ name="peunsu", email="[email protected]" }
]
description = "A python library to parse, edit, and save FTB snbt tag, which is a variant of the \"vanilla\" snbt tag."
readme = { file="README.md", content-type="text/markdown" }
requires-python = ">=3.10"
keywords = [
"minecraft",
"ftb",
"snbt",
"parser",
"library",
]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = [
"wheel",
]
dynamic = [ "version" ]
[project.urls]
homepage = "https://github.com/peunsu/ftb-snbt-lib"
repository = "https://github.com/peunsu/ftb-snbt-lib"
documentation = "https://github.com/peunsu/ftb-snbt-lib"
[tool.setuptools.dynamic]
version = {attr = "ftb_snbt_lib.__version__"}