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 67
|
[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 = "michkapopoff@gmail.com"},
{name = "Insight Software Consortium", email = "castxml@public.kitware.com"},
{name = "Roman Yakovenko", email = "romanyakovenko@gmail.com"},
]
readme = "README.rst"
license = {file = "LICENSE.rst"}
keywords = [
"C++",
"XML",
"declaration parser",
"CastXML",
"gccxml",
]
version = "3.0.2"
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.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"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.9"
[project.optional-dependencies]
test = [
"coverage",
"coveralls",
"pycodestyle",
"pytest",
]
docs = [
"sphinx",
"sphinx_rtd_theme",
]
examples = [
"notebook",
]
|