Files
gentoo/dev-python/munch/files/munch-2.5.0-pbrectomy.patch
Patrick McLean 327a1a4ad4 dev-python/munch: Version bump to 2.5.0, add py38
Copyright: Sony Interactive Entertainment Inc.
Package-Manager: Portage-2.3.79, Repoman-2.3.18
Signed-off-by: Patrick McLean <chutzpah@gentoo.org>
2019-11-21 19:15:15 -08:00

18 lines
470 B
Diff

diff --git a/setup.py b/setup.py
index 31f229c..62e1ad6 100644
--- a/setup.py
+++ b/setup.py
@@ -1,9 +1,7 @@
-from setuptools import setup
+from setuptools import setup, find_packages
setup(
- setup_requires=['pbr>=3.0', 'setuptools>=17.1'],
- pbr=True,
- long_description_content_type='text/markdown; charset=UTF-8',
- keywords=['munch', 'dict', 'mapping', 'container', 'collection'],
+ find_packages(exclude=['tests']),
+ version="%VERSION%"
)