Skip to content

Commit

Permalink
setup.py updated.
Browse files Browse the repository at this point in the history
  • Loading branch information
Raphael Jasjukaitis committed Jul 31, 2011
1 parent d7392f2 commit 9739fe3
Showing 1 changed file with 8 additions and 9 deletions.
17 changes: 8 additions & 9 deletions setup.py
@@ -1,6 +1,7 @@
from setuptools import setup
import os

from setuptools import setup, find_packages

setup(
name='cmsplugin-htmlsitemap',
version='0.1.0',
Expand All @@ -9,14 +10,12 @@
author='Raphael Jasjukaitis',
author_email='webmaster@raphaa.de',
url='https://github.com/raphaa/cmsplugin-htmlsitemap',
packages = [
"cmsplugin_htmlsitemap",
],
packages=find_packages(),
classifiers=[
"Environment :: Web Environment",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Framework :: Django",
'Environment :: Web Environment',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Framework :: Django',
],
zip_safe=False
zip_safe=False,
)

0 comments on commit 9739fe3

Please sign in to comment.