-
Notifications
You must be signed in to change notification settings - Fork 45
/
pyproject.toml
66 lines (60 loc) · 1.71 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
62
63
64
65
66
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "pygccxml"
description = "Python package for easy C++ declarations navigation."
authors = [
{name = "Michka Popoff", email = "[email protected]"},
{name = "Insight Software Consortium", email = "[email protected]"},
{name = "Roman Yakovenko", email = "[email protected]"},
]
license = {file = "LICENSE.rst"}
keywords = [
"C++",
"XML",
"declaration parser",
"CastXML",
"gccxml",
]
version = "2.6.0"
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Intended Audience :: Developers",
"Operating System :: MacOS :: MacOS X",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX",
"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",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
"Topic :: Software Development",
]
dependencies = [
'importlib-metadata >= 4.6; python_version < "3.10"', # Not required for 3.8+, but fixes a stdlib bug
]
[project.urls]
Homepage = "https://github.com/CastXML/pygccxml"
Documentation = "https://readthedocs.org/projects/pygccxml/"
Repository = "https://github.com/CastXML/pygccxml"
Changelog = "https://github.com/CastXML/pygccxml/CHANGELOG.md"
[options]
python_requires = ">=3.7"
[project.optional-dependencies]
test = [
"coverage",
"coveralls",
"pycodestyle",
"pytest",
]
docs = [
"sphinx",
"sphinx_rtd_theme",
]
examples = [
"notebook",
]