slackbuilds_ponce/python/testpath/setup.py
2018-10-06 07:25:24 +07:00

13 lines
421 B
Python

from setuptools import setup, find_packages
setup(
name='testpath',
version='0.4.1',
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'])
)