-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
30 lines (28 loc) · 963 Bytes
/
pyproject.toml
File metadata and controls
30 lines (28 loc) · 963 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
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = 'kcpp'
dynamic = ['version']
keywords = ['preprocessor', 'C++', 'C']
readme = 'README.rst'
requires-python = '>=3.10'
dependencies = []
description = 'A preprocessor for C++23 writen in Python, implemented as a library'
authors = [{name = 'Neil Booth', email = 'kyuupichan@pm.me'}]
maintainers = [{name = 'Neil Booth', email = 'kyuupichan@pm.me'}]
license-files = ["LICENCE"]
urls = {'Project-URL' = 'https://github.com/kyuupichan/kcpp'}
classifiers = [
'Development Status :: 2 - Pre-Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
"Programming Language :: Python :: 3.10",
'Environment :: Console',
"Topic :: Software Development :: Compilers",
"Topic :: Software Development :: Libraries :: Python Modules",
]
[project.scripts]
kcpp = "kcpp:cpp_cli"
kcc = "kcpp:cc_cli"