mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-07-25 08:58:27 -07:00
dev-python/testpath: Import from science overlay
Package-Manager: portage-2.2.20.1
This commit is contained in:
28
dev-python/testpath/files/testpath-0.2-setup.py.patch
Normal file
28
dev-python/testpath/files/testpath-0.2-setup.py.patch
Normal file
@@ -0,0 +1,28 @@
|
||||
Patch to bring back setup.py from
|
||||
https://github.com/jupyter/testpath/blob/086bd1bd1ec7da1b3dacfed1705c0c99fae231b3/setup.py
|
||||
--- /dev/null
|
||||
+++ setup.py
|
||||
@@ -0,0 +1,22 @@
|
||||
+from distutils.core import setup
|
||||
+
|
||||
+with open("README.rst", "r") as f:
|
||||
+ readme = f.read()
|
||||
+
|
||||
+setup(name='testpath',
|
||||
+ version='0.1',
|
||||
+ description='Test utilities for code working with files and commands',
|
||||
+ long_description = readme,
|
||||
+ author='Thomas Kluyver',
|
||||
+ author_email='thomas@kluyver.me.uk',
|
||||
+ url='https://github.com/takluyver/testpath',
|
||||
+ packages=['testpath'],
|
||||
+ classifiers=[
|
||||
+ 'Intended Audience :: Developers',
|
||||
+ 'License :: OSI Approved :: MIT License',
|
||||
+ 'Programming Language :: Python',
|
||||
+ 'Programming Language :: Python :: 2',
|
||||
+ 'Programming Language :: Python :: 3',
|
||||
+ 'Topic :: Software Development :: Testing',
|
||||
+ ]
|
||||
+)
|
||||
\ No newline at end of file
|
||||
Reference in New Issue
Block a user