typesafe-monads/setup.py

10 lines
221 B
Python
Raw Permalink Normal View History

2018-10-11 05:26:00 +00:00
from setuptools import setup # type: ignore
setup(
name="Typesafe Monads",
version="0.1dev",
packages=["monads"],
setup_requires=["pytest-runner"],
tests_require=["pytest", "mypy", "pytest-mypy"],
)