-
-
Notifications
You must be signed in to change notification settings - Fork 478
/
Copy pathsetup.py
executable file
·49 lines (46 loc) · 1.7 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
#!/usr/bin/env python
from setuptools import find_packages, setup # type: ignore[import-untyped]
with open("README.md") as f:
readme = f.read()
dependencies = [
"django",
"typing-extensions",
]
# NB! For clarity, keep version major.minor.patch in sync with django-stubs.
# It's fine to skip django-stubs-ext releases, but when doing a release, update this to newest django-stubs version.
setup(
name="django-stubs-ext",
version="5.0.0.dev1",
description="Monkey-patching and extensions for django-stubs",
long_description=readme,
long_description_content_type="text/markdown",
license="MIT",
license_files=["LICENSE.md"],
url="https://github.com/typeddjango/django-stubs",
author="Simula Proxy",
maintainer="Marti Raudsepp",
maintainer_email="[email protected]",
py_modules=[],
python_requires=">=3.8",
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.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",
},
)