Files
ports/textproc/py-normality/files/patch-setup.py
T
Kai Knoblich 3dc7909274 textproc/py-normality: Update to 2.1.1
* Switch to GitHub for a while to make use of the test suite.

* Add default option ICU to reflect the requirements given in setup.py.

* Also add a workaround to avoid configure/build errors with Python < 3.7.

Changelog since 1.0.0:

https://github.com/pudo/normality/compare/1.0.0...2.1.1
2020-12-16 12:12:55 +00:00

15 lines
494 B
Python

Really exclude "tests" directory to be installed into
${PYTHONPREFIX_SITELIBDIR}
--- setup.py.orig 2020-06-21 09:47:38 UTC
+++ setup.py
@@ -24,7 +24,7 @@ setup(
url='http://github.com/pudo/normality',
license='MIT',
package_data={'banal': ['py.typed']},
- packages=find_packages(exclude=['ez_setup', 'examples', 'test']),
+ packages=find_packages(exclude=['ez_setup', 'examples', 'tests']),
namespace_packages=[],
include_package_data=True,
zip_safe=False,