-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
45 lines (44 loc) · 1.49 KB
/
Copy pathsetup.py
File metadata and controls
45 lines (44 loc) · 1.49 KB
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
40
41
42
43
44
45
from setuptools import find_packages, setup
setup(
name="mypykaizen",
version="0.18.0-dev",
license="MIT",
packages=find_packages(exclude=["tests"]),
author="Dan Hendry",
description=(
"Wrapper around mypy which prevents the number of typecheck errors from increasing "
"but which does not force you to fix them all up front."
),
keywords="mypy typecheck typechecking",
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
platforms="any",
zip_safe=True,
install_requires=[
"mypy>=0.761",
"dataclasses-json>=0.4.1",
],
python_requires=">=3.7.4",
classifiers=[
"Development Status :: 2 - Pre-Alpha",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
],
entry_points={
"console_scripts": [
"mypykaizen=mypykaizen.mypykaizen:main",
"dmypykaizen=mypykaizen.mypykaizen:dmain",
],
},
url="https://github.com/dhendry/mypykaizen/",
project_urls={
"Bug Tracker": "https://github.com/dhendry/mypykaizen/",
"Documentation": "https://github.com/dhendry/mypykaizen/",
"Source Code": "https://github.com/dhendry/mypykaizen/",
},
)