summaryrefslogtreecommitdiff
path: root/tests/testdata/simple.dist/setup.py
blob: 3c7da87d09c59dba6779287a8ddce9acfedd4b97 (plain)
1
2
3
4
5
6
7
8
9
from setuptools import setup

setup(
    name="simple.dist",
    version="0.1",
    description="A testing distribution \N{SNOWMAN}",
    packages=["simpledist"],
    extras_require={"voting": ["beaglevote"]},
)