slackbuilds_ponce/python/entrypoints/setup.py
Benjamin Trigona-Harany 88e26a9d85
python/entrypoints: Added (Discover & load entry points).
Signed-off-by: David Spencer <idlemoor@slackbuilds.org>
2017-01-28 07:38:02 +07:00

13 lines
462 B
Python

from setuptools import setup, find_packages
setup(
name='entrypoints',
version='0.3',
description='Discover and load entry points from installed packages',
url='https://github.com/takluyver/entrypoints',
author='https://github.com/takluyver',
license='MIT',
long_description='The entrypoints module contains functions to find and load entry points, a way for Python packages to advertise objects.',
py_modules=['entrypoints']
)