blob: c857c6835064aba19644a63e6f3e17f872d790f0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
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']
)
|