summaryrefslogtreecommitdiff
path: root/tests/data/src/singlemodule/setup.py
blob: e6358e2f7ca24b0829253670458671e1a9c94ada (plain)
1
2
3
4
5
6
7
8
from setuptools import setup

setup(
    name="singlemodule",
    version="0.0.1",
    description="A sample Python project with a single module",
    py_modules=["singlemodule"],
)