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
|
$ cat debhello-3.1/setup.cfg
[metadata]
name = debhello
version = attr: debhello.__version__
description = Hello Python (GUI) (i18n)
long_description = file: README.md
classifiers =
Development Status :: 5 - Production/Stable
Intended Audience :: Developers
Topic :: System :: Archiving :: Packaging
License :: OSI Approved :: MIT License
Programming Language :: Python
Programming Language :: Python :: 3
Programming Language :: Python :: 3.5
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
author = Osamu Aoki
author_email = osamu@debian.org
maintainer = Osamu Aoki
maintainer_email = osamu@debian.org
url = https://salsa.debian.org/debian/debmake-doc
project_urls =
Documentation = https://salsa.debian.org/debian/debmake-doc
keywords = debhello
license = MIT
[options]
package_dir =
= src
packages = find:
python_requires = >=3.4
setup_requires = setuptools >= 42
[options.packages.find]
where = src
[options.entry_points]
console_scripts =
hello = debhello.__main__:main
# [build]
# icons=False
# help=False
# i18n=False
#
# [build_i18n]
# domain=debhello
# desktop_files=[("share/applications", ("data/hello.desktop.in",))]
|