mirror of
https://github.com/correl/typesafe-monads.git
synced 2024-11-14 11:09:36 +00:00
39 lines
1.1 KiB
Python
39 lines
1.1 KiB
Python
from setuptools import setup # type: ignore
|
|
|
|
with open("README.md", "r") as f:
|
|
long_description = f.read()
|
|
|
|
|
|
setup(
|
|
name="typesafe-monads",
|
|
version="0.8",
|
|
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",
|
|
packages=["monads"],
|
|
package_data={"monads": ["py.typed"]},
|
|
include_package_data=True,
|
|
setup_requires=["pytest-runner"],
|
|
tests_require=[
|
|
"pytest",
|
|
"black",
|
|
"mypy",
|
|
"pytest-asyncio",
|
|
"pytest-cov",
|
|
"pytest-black",
|
|
"pytest-mypy",
|
|
],
|
|
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",
|
|
],
|
|
)
|