forked from callowayproject/django-news-sitemaps
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
21 lines (20 loc) · 737 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
from setuptools import setup, find_packages
setup(
name = 'django-news-sitemaps',
version = '0.1.7',
description = 'Generates sitemaps compatible with the Google News schema',
author = 'TWT Web Devs',
author_email = '[email protected]',
url = 'http://github.com/washingtontimes/django-news-sitemaps/',
include_package_data = True,
packages = find_packages(),
classifiers = [
'Development Status :: 4 - Beta',
'Environment :: Web Environment',
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python',
'Operating System :: OS Independent',
]
)