mirror of
https://git.freebsd.org/ports.git
synced 2025-06-07 13:50:38 -04:00
Test utilities for Python code working with files and commands. WWW: https://github.com/jupyter/testpath
13 lines
419 B
Python
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'])
|
|
)
|