-
Notifications
You must be signed in to change notification settings - Fork 122
Expand file tree
/
Copy pathpyproject.toml
More file actions
42 lines (38 loc) · 1.21 KB
/
pyproject.toml
File metadata and controls
42 lines (38 loc) · 1.21 KB
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
[build-system]
requires = ["setuptools>=61"]
build-backend = "setuptools.build_meta"
[project]
name = "emake-build"
version = "3.7.11"
description = "A simple C/C++ build tool"
readme = "README.md"
requires-python = ">=3.8"
license = { file = "LICENSE" }
authors = [
{ name = "skywind3000" }
]
dependencies = []
keywords = ["build", "c", "cpp", "make", "gcc", "clang"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Intended Audience :: Developers",
"License :: OSI Approved :: GNU General Public License v2 (GPLv2)",
"Natural Language :: Chinese (Simplified)",
"Operating System :: MacOS :: MacOS X",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX :: Linux",
"Programming Language :: C",
"Programming Language :: C++",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Topic :: Software Development :: Build Tools",
]
[project.urls]
Homepage = "https://github.com/skywind3000/emake"
Repository = "https://github.com/skywind3000/emake"
Issues = "https://github.com/skywind3000/emake/issues"
[project.scripts]
emake = "emake:main"
[tool.setuptools]
py-modules = ["emake"]