blob: 3a92914bf1fe31eca6b702c8823dcfb91e999452 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
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'])
)
|