comparison setup.py @ 1:5479aae32f5a trunk

Initial import.
author cmlenz
date Sat, 03 Jun 2006 07:16:01 +0000
parents
children 49364e784c47
comparison
equal deleted inserted replaced
0:5f9862282a9d 1:5479aae32f5a
1 #!/usr/bin/env python
2 # -*- coding: utf-8 -*-
3 #
4 # Copyright (C) 2006 Christopher Lenz
5 # All rights reserved.
6 #
7 # This software is licensed as described in the file COPYING, which
8 # you should have received as part of this distribution. The terms
9 # are also available at http://trac.edgewall.com/license.html.
10 #
11 # This software consists of voluntary contributions made by many
12 # individuals. For the exact contribution history, see the revision
13 # history and logs, available at http://projects.edgewall.com/trac/.
14
15 from setuptools import setup, find_packages
16
17 setup(
18 name='Markup', version='0.1',
19 description='Toolkit for stream-based generation of markup for the web',
20 author='Christopher Lenz', author_email='cmlenz@gmx.net',
21 license='BSD', url='http://markup.cmlenz.net/',
22 packages=find_packages(exclude=['*.tests*']),
23 test_suite = 'markup.tests.suite',
24 zip_safe = True
25 )
Copyright (C) 2012-2017 Edgewall Software