mirror of
https://git.freebsd.org/ports.git
synced 2025-07-12 14:59:13 -04:00
- Update version requirement of TEST_DEPENDS - Update do-test: Changes: https://github.com/jupyter/testpath/blob/master/doc/history.rst
25 lines
597 B
Python
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',
|
|
)
|