-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
61 lines (53 loc) · 1.62 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
56
57
58
59
60
61
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "zigcc"
dynamic = ["version"]
authors = [{name = "Jiacai Liu", email="dev@liujiacai.net"}]
description = "Util scripts aimed at simplifying the use of `zig cc` for compiling C, C++, Rust, and Go programs."
readme = "README.md"
keywords = ["zig", "compile", "rust", "cross-compile", "go"]
license = "GPL-3.0"
requires-python = ">=3.0.0"
dependencies = [
]
classifiers = [
"Operating System :: OS Independent",
"Topic :: Software Development",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Intended Audience :: Information Technology",
"Intended Audience :: System Administrators",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
]
[project.urls]
Repository = "https://github.com/jiacai2050/zigcc"
Issues = "https://github.com/jiacai2050/zigcc/issues"
[project.scripts]
zigcc = "zigcc:main"
zigcxx = "zigcc:main"
zigcargo = "zigcc:main"
[tool.hatch.version]
path = "zigcc/__init__.py"
[tool.hatch.build.targets.sdist]
include = [
"zigcc",
"pyproject.toml",
]
[tool.hatch.build.targets.wheel]
include = [
"zigcc"
]
# https://github.com/astral-sh/ruff?tab=readme-ov-file#configuration
[tool.ruff.lint]
fixable = ["ALL"]
[tool.ruff.format]
quote-style = "single"