mirror of
https://git.freebsd.org/ports.git
synced 2025-06-13 00:30:33 -04:00
Discover and load entry points from installed packages. WWW: https://github.com/takluyver/entrypoints
13 lines
384 B
Python
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']
|
|
)
|