Files
django-stubs/pytest_plugin/setup.py
Maxim Kurnikov 4dfa363521 lint fixes
2019-07-24 13:38:50 +03:00

28 lines
735 B
Python

from setuptools import setup
dependencies = [
'pytest-mypy-plugins',
]
setup(
name='pytest-django-stubs-newsemanal',
version='0.4.0',
license='MIT',
url="https://github.com/mkurnikov/pytest-mypy-plugins",
author="Maksim Kurnikov",
author_email="maxim.kurnikov@gmail.com",
# the following makes a plugin available to pytest
entry_points={
'pytest11': [
'pytest-django-stubs-newsemanal = pytest_plugin.collect'
]
},
install_requires=dependencies,
classifiers=[
'Development Status :: 3 - Alpha',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7'
]
)