-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathsetup.py
More file actions
27 lines (25 loc) · 911 Bytes
/
setup.py
File metadata and controls
27 lines (25 loc) · 911 Bytes
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
from setuptools import find_packages, setup
import server_timing
setup(
name="django-server-timing",
version=server_timing.__version__,
author="Vlad Temian",
author_email="vladtemian@gmail.com",
url="http://github.com/vtemian/django-server-timing",
description="Django middleware that integrates Server-Timing header",
packages=find_packages(),
include_package_data=True,
python_requires=">=3.10",
install_requires=[],
classifiers=[
"Environment :: Web Environment",
"Framework :: Django :: 4.2",
"Framework :: Django :: 5.0",
"Framework :: Django :: 5.1",
"Development Status :: 5 - Production/Stable",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
],
)