setup.py 462 B

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