File: setup.py

package info (click to toggle)
fastentrypoints 0.12-5
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 112 kB
  • sloc: python: 74; makefile: 9
file content (15 lines) | stat: -rw-r--r-- 493 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
from setuptools import setup
import fastentrypoints

setup(
    name='fastentrypoints',
    version='0.12',
    py_modules=['fastentrypoints'],
    description='Makes entry_points specified in setup.py load more quickly',
    long_description=open('README.rst').read(),
    url='https://github.com/ninjaaron/fast-entry_points',
    author='Aaron Christianson',
    author_email='ninjaaron@gmail.com',
    license='BSD',
    entry_points={'console_scripts': ['fastep=fastentrypoints:main']},
)