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 68 69 70 71 72 73 74 75 76 77 78 79 80 81
|
# SPDX-FileCopyrightText: 2021 GNOME Foundation
#
# SPDX-License-Identifier: Apache-2.0 OR GPL-3.0-or-later
[metadata]
name = gi-docgen
version = attr: gidocgen.core.version
description = Documentation tool for GObject-based libraries
long_description = file: README.md
long_description_content_type = text/markdown
author = Emmanuele Bassi
author_email = ebassi@gnome.org
url = https://gitlab.gnome.org/GNOME/gi-docgen
project_urls =
Bug tracker = https://gitlab.gnome.org/GNOME/gi-docgen/issues/
Documentation = https://gnome.pages.gitlab.gnome.org/gi-docgen/
keywords =
documentation
introspection
gobject
gtk
license = GPL-3.0-or-later AND Apache-2.0 AND CC0-1.0
license_files =
LICENSES/Apache-2.0.txt
LICENSES/GPL-3.0-or-later.txt
classifiers =
Development Status :: 4 - Beta
Environment :: Console
Intended Audience :: Developers
License :: OSI Approved :: Apache Software License
License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)
Natural Language :: English
Operating System :: MacOS :: MacOS X
Operating System :: Microsoft :: Windows
Operating System :: POSIX :: BSD
Operating System :: POSIX :: Linux
Programming Language :: Python :: 3 :: Only
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Topic :: Desktop Environment :: Gnome
Topic :: Software Development :: Documentation
[options]
include_package_data = true
packages =
gidocgen
gidocgen.gir
python_requires = >= 3.6.0
setup_requires =
setuptools
install_requires =
Markdown >= 3.2
MarkupSafe
Pygments
jinja2
packaging
tomli; python_version < '3.11'
typogrify
[options.entry_points]
console_scripts =
gi-docgen = gidocgen.gidocmain:main
[options.data_files]
share/pkgconfig = gi-docgen.pc
share/man/man1 = docs/gi-docgen.1
[options.package_data]
gidocgen =
templates/basic/basic.toml
templates/basic/*.css
templates/basic/*.html
templates/basic/*.js
templates/basic/*.png
py.typed
[bdist_wheel]
universal = true
|