forked from typeddjango/pytest-mypy-plugins
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
40 lines (36 loc) · 1003 Bytes
/
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
40
import sys
from setuptools import setup
with open('README.md', 'r') as f:
readme = f.read()
dependencies = [
'pytest',
'mypy',
'decorator',
'capturer',
'pyyaml'
]
setup(
name='pytest-mypy-plugins',
version='1.0.3',
description='pytest plugin for writing tests for mypy plugins',
long_description=readme,
long_description_content_type='text/markdown',
license='MIT',
url="https://github.com/mkurnikov/pytest-mypy-plugins",
author="Maksim Kurnikov",
author_email="[email protected]",
packages=['pytest_mypy'],
# the following makes a plugin available to pytest
entry_points={
'pytest11': [
'pytest-mypy-plugins = pytest_mypy.collect'
]
},
install_requires=dependencies,
classifiers=[
'Development Status :: 3 - Alpha',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7'
]
)