view setup.py @ 29:7e8a5da34eee

add license metadata
author Jeff Hammel <jhammel@mozilla.com>
date Wed, 22 Dec 2010 14:03:53 -0800
parents dc18d6db4956
children 1549be7f0fcb
line wrap: on
line source

from setuptools import setup, find_packages
import sys, os

version = '0.0'

setup(name='MakeItSo',
      version=version,
      description='filesystem template interpreter',
      long_description="""\
""",
      classifiers=[], # Get strings from http://pypi.python.org/pypi?%3Aaction=list_classifiers
      keywords='',
      author='Jeff Hammel',
      author_email='jhammel@mozilla.com',
      url='http://k0s.org/',
      license='MPL',
      packages=find_packages(exclude=['ez_setup', 'examples', 'tests']),
      include_package_data=True,
      zip_safe=False,
      install_requires=[
          # -*- Extra requirements: -*-
        'tempita'
      ],
      dependency_links=[
        'http://bitbucket.org/ianb/tempita#egg=tempita'
        ],
      entry_points="""
      # -*- Entry points: -*-
      [console_scripts]
      makeitso = makeitso.makeitso:main
      """,
      )