summaryrefslogtreecommitdiffstats
path: root/python/testpath/setup.py
blob: 9fc1264e4599355a23c4b1214f16aba8e8fdb115 (plain)

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'])
)