forked from akarzim/image-sitemaps
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
39 lines (35 loc) · 1.2 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
#!/usr/bin/env python
try:
import ez_setup
ez_setup.use_setuptools()
except ImportError:
pass
from setuptools import setup, find_packages
# setup itself.
setup(
name = "django-image-sitemaps",
version = '1.05',
install_requires = ['django>=1.3'],
packages = find_packages(),
data_files=[('imagesitemaps/templates', ['imagesitemaps/templates/image_sitemap.xml'])],
author = "Francois Vantomme",
author_email = "[email protected]",
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"
],
)