File: setup.py

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

setup(
    name='example',
    packages=find_packages('src'),
    package_dir={'': 'src'},
)