mirror of
https://github.com/correl/typesafe-monads.git
synced 2024-11-14 19:19:32 +00:00
10 lines
221 B
Python
10 lines
221 B
Python
|
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"],
|
||
|
)
|