slackbuilds_ponce/python/testpath/setup.py
Benjamin Trigona-Harany 28c8ec819c
python/testpath: Added (Test utilities for files and commands).
Signed-off-by: David Spencer <idlemoor@slackbuilds.org>
2017-01-28 07:38:01 +07: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'])
)