blob: 9fc1264e4599355a23c4b1214f16aba8e8fdb115 (
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.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'])
)
|