Files
django-stubs/django_stubs_ext/setup.py
2022-11-03 13:24:13 +03:00

49 lines
1.5 KiB
Python

from distutils.core import setup
from setuptools import find_packages
with open("README.md") as f:
readme = f.read()
dependencies = [
"django",
"typing-extensions",
]
setup(
name="django-stubs-ext",
version="0.7.0",
description="Monkey-patching and extensions for django-stubs",
long_description=readme,
long_description_content_type="text/markdown",
license="MIT",
url="https://github.com/typeddjango/django-stubs",
author="Simula Proxy",
author_email="3nki.nam.shub@gmail.com",
maintainer="Nikita Sobolev",
maintainer_email="mail@sobolevn.me",
py_modules=[],
python_requires=">=3.7",
install_requires=dependencies,
packages=["django_stubs_ext", *find_packages(exclude=["scripts"])],
package_data={"django_stubs_ext": ["py.typed"]},
classifiers=[
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Typing :: Typed",
"Framework :: Django",
"Framework :: Django :: 2.2",
"Framework :: Django :: 3.0",
"Framework :: Django :: 3.1",
"Framework :: Django :: 3.2",
"Framework :: Django :: 4.0",
],
project_urls={
"Release notes": "https://github.com/typeddjango/django-stubs/releases",
},
)