File: setup.py

package info (click to toggle)
python-corner 2.2.2-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 6,692 kB
  • sloc: python: 1,503; makefile: 198
file content (7 lines) | stat: -rw-r--r-- 143 bytes parent folder | download
1
2
3
4
5
6
7
from setuptools import find_packages, setup

setup(
    name="corner",
    packages=find_packages(where="src"),
    package_dir={"": "src"},
)