13 lines
305 B
Python
Executable File
13 lines
305 B
Python
Executable File
#!/usr/bin/env python
|
|
|
|
from distutils.core import setup
|
|
|
|
setup(name='sitemap_gen',
|
|
version='1.4',
|
|
description='Sitemap Generator',
|
|
license='BSD',
|
|
author='Google Inc.',
|
|
author_email='opensource@google.com',
|
|
url='http://sourceforge.net/projects/goog-sitemapgen/',
|
|
)
|