-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
45 lines (43 loc) · 1.6 KB
/
setup.py
File metadata and controls
45 lines (43 loc) · 1.6 KB
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
from setuptools import find_packages, setup
with open("README.md") as f:
readme = f.read()
setup(
name="django-plausible",
version="0.5.0",
url="https://github.com/RealOrangeOne/django-plausible",
author="Jake Howard",
description=" Django module to provide easy Plausible integration, with Wagtail support",
long_description=readme,
long_description_content_type="text/markdown",
license="BSD",
packages=find_packages(include=["plausible*"]),
package_data={"plausible": ["py.typed"]},
install_requires=["Django>=3.2"],
python_requires=">=3.7",
extras_require={"wagtail": ["wagtail>=4.0"]},
keywords="django plausible wagtail analytics",
classifiers=[
"Environment :: Web Environment",
"Framework :: Wagtail",
"Framework :: Wagtail :: 4",
"Framework :: Wagtail :: 5",
"Framework :: Django",
"Framework :: Django :: 3.2",
"Framework :: Django :: 4.0",
"Framework :: Django :: 4.1",
"Framework :: Django :: 4.2",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.7",
"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",
],
)