-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
40 lines (38 loc) · 1.34 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
from setuptools import find_packages, setup
with open("README.md") as f:
readme = f.read()
setup(
name="django-sri",
version="0.7.0",
url="https://github.com/RealOrangeOne/django-sri",
author="Jake Howard",
description="Subresource Integrity for Django",
long_description=readme,
long_description_content_type="text/markdown",
license="BSD",
packages=find_packages(include=["sri*"]),
package_data={"sri": ["py.typed"]},
install_requires=["Django>=3.2"],
python_requires=">=3.8",
keywords="django subresource integrity sri",
classifiers=[
"Environment :: Web Environment",
"Framework :: Django",
"Framework :: Django :: 3.2",
"Framework :: Django :: 4.1",
"Framework :: Django :: 4.2",
"Framework :: Django :: 5.0",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD 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",
"Programming Language :: Python",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Software Development",
"Typing :: Typed",
],
)