-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
54 lines (47 loc) · 1.43 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
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[project.urls]
Homepage = "https://github.com/Ulibos/ndf-parse"
Documentation = "https://ulibos.github.io/ndf-parse"
[project]
name = "ndf-parse"
authors = [{name = "Ulibos"}]
description = "A package for parsing and editing Eugen Systems ndf files."
readme = "README.md"
requires-python = ">=3.8"
license = {file = "LICENSE"}
keywords = ["ndf", "parser", "parsing"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Intended Audience :: Developers",
"Intended Audience :: Other Audience",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: File Formats",
]
dynamic = ["version"]
dependencies = [
"tree-sitter ~= 0.21.0",
"typing_extensions; python_version < '3.11'"
]
[project.optional-dependencies]
dev = [
"sphinx ~= 7.0",
"furo ~= 2024.0",
"sphinx-multiversion ~= 0.2.4"
]
[tool.setuptools]
packages = ["ndf_parse", "ndf_parse.model", "ndf_parse.bin"]
[tool.setuptools.package-data]
ndf_parse = ["bin/ndf.dll"]
[tool.setuptools.dynamic]
version = {attr = "ndf_parse.__version__"}
[tool.black]
line-length = 79