Skip to content

Commit 7b5cff8

Browse files
setup: fix three setuptools warnings (BoboTiG#203)
UserWarning: Usage of dash-separated 'author-email' will not be supported in future versions. Please use the underscore name 'author_email' instead UserWarning: Usage of dash-separated 'home-page' will not be supported in future versions. Please use the underscore name 'home_page' instead UserWarning: Usage of dash-separated 'zip-safe' will not be supported in future versions. Please use the underscore name 'zip_safe' instead
1 parent 5c0c4f6 commit 7b5cff8

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

setup.cfg

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,11 @@
22
name = mss
33
version = 6.1.0
44
author = Mickaël 'Tiger-222' Schoentgen
5-
author-email = contact@tiger-222.fr
5+
author_email = contact@tiger-222.fr
66
description = An ultra fast cross-platform multiple screenshots module in pure python using ctypes.
77
long_description = file: README.rst
88
url = https://github.com/BoboTiG/python-mss
9-
home-page = https://pypi.org/project/mss/
9+
home_page = https://pypi.org/project/mss/
1010
project_urls =
1111
Documentation = https://python-mss.readthedocs.io
1212
Source = https://github.com/BoboTiG/python-mss
@@ -31,7 +31,7 @@ classifiers =
3131
Topic :: Software Development :: Libraries
3232

3333
[options]
34-
zip-safe = False
34+
zip_safe = False
3535
include_package_data = True
3636
packages = mss
3737
python_requires = >=3.5

0 commit comments

Comments
 (0)