File: setup.py

package info (click to toggle)
python-pluggy 1.5.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, trixie
  • size: 464 kB
  • sloc: python: 3,205; sh: 58; makefile: 6
file content (9 lines) | stat: -rw-r--r-- 195 bytes parent folder | download | duplicates (8)
1
2
3
4
5
6
7
8
9
from setuptools import setup


setup(
    name="eggsample-spam",
    install_requires="eggsample",
    entry_points={"eggsample": ["spam = eggsample_spam"]},
    py_modules=["eggsample_spam"],
)