ports/devel/py-testpath/files/setup.py
Po-Chuan Hsieh 06943a7642
devel/py-testpath: Update to 0.6.0
- Update version requirement of TEST_DEPENDS
- Update do-test:

Changes:	https://github.com/jupyter/testpath/blob/master/doc/history.rst
2022-04-16 12:19:44 +08:00

25 lines
597 B
Python

#!/usr/bin/env python
# setup.py generated by flit for tools that don't yet use PEP 517
from distutils.core import setup
packages = \
['testpath']
package_data = \
{'': ['*']}
extras_require = \
{'test': ['pytest']}
setup(name='testpath',
version='%%PORTVERSION%%',
description='Test utilities for code working with files and commands',
author=None,
author_email='Jupyter Development Team <jupyter@googlegroups.com>',
url=None,
packages=packages,
package_data=package_data,
extras_require=extras_require,
python_requires='>= 3.5',
)