slackbuilds_ponce/python/entrypoints/setup.py
Isaac Yu c4af87e477
python/entrypoints: Updated for version 0.4.0 (+new maintainer)
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
2022-02-21 14:26:36 +07:00

12 lines
461 B
Python

from setuptools import setup, find_packages
setup(
name='entrypoints',
version='0.4',
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']
)