forked from shahryorg/image-sitemaps
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
31 lines (28 loc) · 1 KB
/
setup.py
File metadata and controls
31 lines (28 loc) · 1 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
#!/usr/bin/env python
from setuptools import setup
setup(
name = "django-image-sitemaps",
version = '2.0.0',
install_requires = ['django>=1.6'],
packages = ['imagesitemaps'],
author = "Francois Vantomme",
author_email = "akarzim@gmail.com",
description = "Google Image Sitemaps builder for Django.",
license = "BSD License",
keywords = "google, django, image, sitemap",
url = "https://github.com/akarzim/image-sitemaps/",
#download_url = "https://github.com/akarzim/image-sitemaps/tarball/master",
include_package_data = True,
classifiers=[
"Development Status :: 5 - Production/Stable",
"Environment :: Web Environment",
"Framework :: Django",
"Intended Audience :: Developers",
"Programming Language :: Python :: 2",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Topic :: Software Development",
"Topic :: Internet",
"Natural Language :: English"
],
)