dev-python/entrypoints: New ebuild, required for nbconvert

Package-Manager: portage-2.2.28
This commit is contained in:
Marius Brehler
2016-05-20 09:03:54 +02:00
parent c561a3d360
commit d0bd0c9d12
5 changed files with 110 additions and 0 deletions

View File

@@ -0,0 +1,20 @@
setup.py for entrypoints by Marius Brehler <marbre@linux.sungazer.de>.
Patch by Marius Brehler <marbrbre@linux.sungazer.de>.
--- /dev/null
+++ b/setup.py
@@ -0,0 +1,13 @@
+from distutils.core import setup
+
+setup(name='entrypoints',
+ version='0.2.1',
+ description='Discover and load entry points from installed packages.',
+ author='Thomas Kluyver',
+ author_email='thomas@kluyver.me.uk',
+ url='https://github.com/takluyver/entrypoints',
+ packages=['entrypoints'],
+ classifiers=[
+ 'License :: OSI Approved :: MIT License'
+ ]
+)
\ No newline at end of file