Skip to content

Commit

Permalink
setup.cfg: use underscores for identifiers
Browse files Browse the repository at this point in the history
Hyphens are deprecated in newer versions of setuptools:
```
* Usage of dash-separated 'author-email' will not be supported in future versions. Please use the underscore name 'author_email' instead
* Usage of dash-separated 'description-file' will not be supported in future versions. Please use the underscore name 'description_file' instead
* Usage of dash-separated 'home-page' will not be supported in future versions. Please use the underscore name 'home_page' instead
```

Tweaked setup.cfg to use underscores intead.

Bug: https://bugs.gentoo.org/796416
Signed-off-by: Sam James <sam@gentoo.org>
  • Loading branch information
thesamesam committed Aug 5, 2021
1 parent eca7276 commit 55aeb94
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions setup.cfg
@@ -1,11 +1,11 @@
[metadata]
name = pysol_cards
summary = Deal PySol FC Cards
description-file =
description_file =
README.rst
author = Shlomi Fish
author-email = shlomif@cpan.org
home-page = https://fc-solve.shlomifish.org/
author_email = shlomif@cpan.org
home_page = https://fc-solve.shlomifish.org/
classifier =
Intended Audience :: Developers
License :: OSI Approved :: MIT License
Expand Down

0 comments on commit 55aeb94

Please sign in to comment.