forked from typeddjango/django-stubs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
79 lines (71 loc) · 2.3 KB
/
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
#!/usr/bin/env 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 = [
"django",
"asgiref",
"django-stubs-ext>=5.0.0.dev1",
"tomli; python_version < '3.11'",
# Types:
"typing-extensions",
"types-PyYAML",
]
# Keep compatible-mypy major.minor version pinned to what we use in CI (requirements.txt)
extras_require = {
"compatible-mypy": ["mypy~=1.10.0"],
"redis": ["redis"],
}
setup(
name="django-stubs",
version="5.0.0.dev1",
description="Mypy stubs for Django",
long_description=readme,
long_description_content_type="text/markdown",
license="MIT",
license_files=["LICENSE.md"],
url="https://github.com/typeddjango/django-stubs",
author="Maksim Kurnikov",
author_email="[email protected]",
maintainer="Marti Raudsepp",
maintainer_email="[email protected]",
py_modules=[],
python_requires=">=3.8",
install_requires=dependencies,
extras_require=extras_require,
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.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Typing :: Typed",
"Framework :: Django",
"Framework :: Django :: 4.1",
"Framework :: Django :: 4.2",
"Framework :: Django :: 5.0",
],
project_urls={
"Funding": "https://github.com/sponsors/typeddjango",
"Release notes": "https://github.com/typeddjango/django-stubs/releases",
},
)