mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-07 20:27:02 +01:00
28c8ec819c
Signed-off-by: David Spencer <idlemoor@slackbuilds.org>
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'])
|
|
)
|