mirror of
https://github.com/davidhalter/django-stubs.git
synced 2025-12-07 04:34:29 +08:00
28 lines
735 B
Python
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'
|
|
]
|
|
)
|