Merge pull request #462 from mgorny/setuptools-depr

fix setuptools deprecation warnings
pull/463/head
Nicco Kunzmann 2022-10-18 19:34:42 +01:00 zatwierdzone przez GitHub
commit 2528641242
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: 4AEE18F83AFDEB23
4 zmienionych plików z 4 dodań i 3 usunięć

Wyświetl plik

@ -6,7 +6,7 @@ Changelog
Minor changes: Minor changes:
- ... - fixed setuptools deprecation warnings [mgorny]
Breaking changes: Breaking changes:

Wyświetl plik

@ -63,6 +63,7 @@ icalendar contributors
- jacadzaca <vitouejj@gmail.com> - jacadzaca <vitouejj@gmail.com>
- Mauro Amico <mauro.amico@gmail.com> - Mauro Amico <mauro.amico@gmail.com>
- Alexander Pitkin <peleccom@gmail.com> - Alexander Pitkin <peleccom@gmail.com>
- Michał Górny <mgorny@gentoo.org>
Find out who contributed:: Find out who contributed::

Wyświetl plik

@ -13,7 +13,7 @@ create-wheel = yes
universal = 1 universal = 1
[metadata] [metadata]
license_file = LICENSE.rst license_files = LICENSE.rst
[tool:pytest] [tool:pytest]
norecursedirs = .* env* docs *.egg src/icalendar/tests/hypothesis norecursedirs = .* env* docs *.egg src/icalendar/tests/hypothesis

Wyświetl plik

@ -52,7 +52,7 @@ setuptools.setup(
author_email='plone-developers@lists.sourceforge.net', author_email='plone-developers@lists.sourceforge.net',
url='https://github.com/collective/icalendar', url='https://github.com/collective/icalendar',
license='BSD', license='BSD',
packages=setuptools.find_packages('src'), packages=setuptools.find_namespace_packages('src'),
package_dir={'': 'src'}, package_dir={'': 'src'},
include_package_data=True, include_package_data=True,
zip_safe=False, zip_safe=False,