-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathsetup.py
39 lines (36 loc) · 1.15 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
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",
],
)