forked from ooppsss60/django-webmaster-verification
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
32 lines (29 loc) · 995 Bytes
/
setup.py
File metadata and controls
32 lines (29 loc) · 995 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
28
29
30
31
32
from setuptools import setup, find_packages
setup(
name="django-webmaster-verification",
version="0.4.0",
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 :: 2.7",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
],
install_requires=[
"Django >= 1.8",
],
zip_safe=True,
)