ports/devel/py-testpath/files/setup.py
Antoine Brodin 6ed1777d49 New port: devel/py-testpath
Test utilities for Python code working with files and commands.
WWW: https://github.com/jupyter/testpath
2017-01-09 18:45:14 +00:00

13 lines
419 B
Python

from setuptools import setup, find_packages
setup(
name='testpath',
version='0.3',
description='Test utilities for Python code working with files and commands',
url='https://github.com/jupyter/testpath',
author='The Jupyter Development Team',
license='MIT',
long_description='Test utilities for Python code working with files and commands',
packages=find_packages(exclude=['tests'])
)