-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
34 lines (32 loc) · 1.09 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
from setuptools import find_packages
from setuptools import setup
setup(
name="django-webmaster-verification",
version="0.4.3",
packages=find_packages(),
author="Nicolas Kuttler",
author_email="pypi@kuttler.eu",
description="Webmaster tools verification for Django",
long_description=open("README.rst").read(),
license="BSD",
url="http://github.com/nkuttler/django-webmaster-verification",
include_package_data=True,
classifiers=[
"Development Status :: 5 - Production/Stable",
"Environment :: Web Environment",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Framework :: Django",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
],
install_requires=[
"Django >= 3.2",
],
zip_safe=True,
)