ports/www/py-pysmartdl/files/patch-setup.py
Po-Chuan Hsieh 4b592bcd0c
www/py-pysmartdl: Convert to USE_PYTHON=pep517
- Bump PORTREVISION for package change
2024-05-13 22:13:31 +08:00

18 lines
610 B
Python

--- setup.py.orig 2020-09-19 15:39:42 UTC
+++ setup.py
@@ -5,13 +5,13 @@ setup(
release_posttag = ""
setup(
- name='pySmartDL',
+ name='pysmartdl',
version=pySmartDL.__version__ + release_posttag,
url='http://pypi.python.org/pypi/pySmartDL/',
author='Itay Brandes',
author_email='brandes.itay+pysmartdl@gmail.com',
license='Public Domain',
- packages=find_packages(),
+ packages=find_packages(exclude=['test*']),
description='A Smart Download Manager for Python',
long_description=open('README.md').read(),
test_suite = "test.test_pySmartDL.test_suite",