2018-10-11 05:26:00 +00:00
|
|
|
from setuptools import setup # type: ignore
|
|
|
|
|
2018-11-29 16:01:31 +00:00
|
|
|
with open("README.md", "r") as f:
|
|
|
|
long_description = f.read()
|
|
|
|
|
2018-11-29 16:21:39 +00:00
|
|
|
|
2018-10-11 05:26:00 +00:00
|
|
|
setup(
|
2018-11-29 16:01:31 +00:00
|
|
|
name="typesafe-monads",
|
2019-06-11 15:57:16 +00:00
|
|
|
version="0.8",
|
2018-11-29 16:01:31 +00:00
|
|
|
author="Correl Roush",
|
|
|
|
author_email="correl@gmail.com",
|
|
|
|
description="Type-annotated monad implementations for Python 3.7+",
|
|
|
|
long_description=long_description,
|
|
|
|
long_description_content_type="text/markdown",
|
|
|
|
url="https://github.com/correl/typesafe-monads",
|
2018-10-11 05:26:00 +00:00
|
|
|
packages=["monads"],
|
2018-12-03 20:37:22 +00:00
|
|
|
package_data={"monads": ["py.typed"]},
|
|
|
|
include_package_data=True,
|
2018-10-11 05:26:00 +00:00
|
|
|
setup_requires=["pytest-runner"],
|
2018-12-12 06:35:54 +00:00
|
|
|
tests_require=[
|
|
|
|
"pytest",
|
|
|
|
"black",
|
|
|
|
"mypy",
|
2018-12-13 04:04:14 +00:00
|
|
|
"pytest-asyncio",
|
2018-12-12 06:35:54 +00:00
|
|
|
"pytest-cov",
|
|
|
|
"pytest-black",
|
|
|
|
"pytest-mypy",
|
|
|
|
],
|
2018-11-29 16:01:31 +00:00
|
|
|
classifiers=[
|
|
|
|
"Development Status :: 2 - Pre-Alpha",
|
|
|
|
"Intended Audience :: Developers",
|
|
|
|
"License :: OSI Approved :: MIT License",
|
|
|
|
"Operating System :: OS Independent",
|
|
|
|
"Programming Language :: Python :: 3 :: Only",
|
|
|
|
"Programming Language :: Python :: 3.7",
|
|
|
|
"Programming Language :: Python :: 3.8",
|
|
|
|
"Topic :: Software Development :: Libraries",
|
|
|
|
],
|
2018-10-11 05:26:00 +00:00
|
|
|
)
|