mirror of
https://github.com/davidhalter/django-stubs.git
synced 2025-12-10 22:11:54 +08:00
* Bump mypy to 0.95x * Remove the * for inferred types There was an upstream change (https://github.com/python/mypy/pull/12459) to remove * from inferred types in the reveal_type output. As we are asserting the * to exist, all the test cases are now failing on the 0.950 release. Removing the expected * to mirror the upstream behaviour change should resolve the test failures.
68 lines
1.8 KiB
Python
68 lines
1.8 KiB
Python
import os
|
|
from typing import List
|
|
|
|
from setuptools import find_packages, setup
|
|
|
|
|
|
def find_stub_files(name: str) -> List[str]:
|
|
result = []
|
|
for root, _dirs, files in os.walk(name):
|
|
for file in files:
|
|
if file.endswith(".pyi"):
|
|
if os.path.sep in root:
|
|
sub_root = root.split(os.path.sep, 1)[-1]
|
|
file = os.path.join(sub_root, file)
|
|
result.append(file)
|
|
return result
|
|
|
|
|
|
with open("README.md") as f:
|
|
readme = f.read()
|
|
|
|
dependencies = [
|
|
"mypy>=0.930,<0.960",
|
|
"django",
|
|
"django-stubs-ext>=0.4.0",
|
|
"tomli",
|
|
# Types:
|
|
"typing-extensions",
|
|
"types-pytz",
|
|
"types-PyYAML",
|
|
]
|
|
|
|
setup(
|
|
name="django-stubs",
|
|
version="1.10.1",
|
|
description="Mypy stubs for Django",
|
|
long_description=readme,
|
|
long_description_content_type="text/markdown",
|
|
license="MIT",
|
|
url="https://github.com/typeddjango/django-stubs",
|
|
author="Maksim Kurnikov",
|
|
author_email="maxim.kurnikov@gmail.com",
|
|
py_modules=[],
|
|
python_requires=">=3.7",
|
|
install_requires=dependencies,
|
|
packages=["django-stubs", *find_packages(exclude=["scripts"])],
|
|
package_data={
|
|
"django-stubs": find_stub_files("django-stubs"),
|
|
"mypy_django_plugin": ["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",
|
|
"Typing :: Typed",
|
|
"Framework :: Django",
|
|
"Framework :: Django :: 2.2",
|
|
"Framework :: Django :: 3.0",
|
|
"Framework :: Django :: 3.1",
|
|
"Framework :: Django :: 3.2",
|
|
],
|
|
project_urls={
|
|
"Release notes": "https://github.com/typeddjango/django-stubs/releases",
|
|
},
|
|
)
|