File: setup.py

package info (click to toggle)
python-pluggy 1.0.0%2Brepack-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 336 kB
  • sloc: python: 1,922; sh: 10; makefile: 5
file content (8 lines) | stat: -rw-r--r-- 194 bytes parent folder | download | duplicates (20)
1
2
3
4
5
6
7
8
from setuptools import setup

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