blob: 1e7a78a22485b84273400b22b581ad1f3071ef5c (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
from __future__ import annotations
from setuptools import setup
setup(
name="simple.dist",
version="0.1",
description="A testing distribution \N{SNOWMAN}",
packages=["simpledist"],
extras_require={"voting": ["beaglevote"]},
)
|