Skip to content

Commit

Permalink
setup.cfg: migrate some options off of pbr
Browse files Browse the repository at this point in the history
setuptools natively supports declarative setup.cfg for a long time now, so there's no need to
specify this in pbr when it can be done in a more stock manner
  • Loading branch information
eli-schwartz committed Sep 9, 2021
1 parent 054778f commit ef84195
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
[metadata]
name = guake
summary = Guake Terminal
description_file = README.rst
long_description = file: README.rst
long_description_content_type = text/x-rst
license_file = COPYING
author = Gaetan Semet
author_email = gaetan@xeberon.net
Expand All @@ -18,14 +19,15 @@ classifier =
Topic :: Terminals :: Terminal Emulators/X Terminals
Topic :: Desktop Environment :: Gnome

[files]
[options]
packages =
guake

[files]
data_files =
share/guake/po = po/*

[entry_points]
[options.entry_points]
console_scripts =
guake = guake.main:exec_main
guake-toggle = guake.guake_toggle:toggle_guake_by_dbus
Expand Down

0 comments on commit ef84195

Please sign in to comment.