File: setup.py

package info (click to toggle)
python-pytest-cov 5.0.0-1
  • links: PTS, VCS
  • area: main
  • in suites: trixie
  • size: 424 kB
  • sloc: python: 2,338; makefile: 6
file content (7 lines) | stat: -rw-r--r-- 145 bytes parent folder | download
1
2
3
4
5
6
7
from setuptools import find_packages
from setuptools import setup

setup(
    name='example',
    packages=find_packages(include=['example']),
)