-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
30 lines (28 loc) · 917 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
[tool.poetry]
name = "gen-gen-types-clang"
version = "0.2.1"
description = "Project which generates projects which generate Clang stubs packages"
authors = ["Travis Gockel <[email protected]>"]
license = "Apache-2.0"
readme = "README.rst"
homepage = "https://github.com/tgockel/types-clang"
repository = "https://github.com/tgockel/types-clang"
keywords = ["clang", "stubs", "typing"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Topic :: Software Development :: Compilers",
"Typing :: Stubs Only"
]
packages = [
{ include = "clang-stubs", from = "." }
]
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.dependencies]
python = "^3.7"
Jinja2 = "^3.1.1"