ports/devel/py-entrypoints/files/setup.py
Antoine Brodin 84c2e6cac5 New port: devel/py-entrypoints
Discover and load entry points from installed packages.
WWW: https://github.com/takluyver/entrypoints
2017-01-09 18:49:17 +00:00

13 lines
384 B
Python

from setuptools import setup, find_packages
setup(
name='entrypoints',
version='0.2.2',
description='Discover and load entry points from installed packages',
url='https://github.com/takluyver/entrypoints',
author='Thomas Kluyver',
license='MIT',
long_description='Discover and load entry points from installed packages',
py_modules=['entrypoints']
)