opnsense-ports/devel/py-testpath/files/setup.py
Franco Fichtner b2b807b85d */*: sync with upstream
Taken from: FreeBSD
2017-01-10 06:23:02 +01:00

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