annotate setup.py @ 1:821114ec4f69

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