comparison setup.py @ 66:822089ae65ce

Switch copyright to Edgewall and URLs to markup.edgewall.org.
author cmlenz
date Sun, 09 Jul 2006 17:46:12 +0000
parents b8456279c444
children 894576e2b813
comparison
equal deleted inserted replaced
65:5c024cf58ecb 66:822089ae65ce
1 #!/usr/bin/env python 1 #!/usr/bin/env python
2 # -*- coding: utf-8 -*- 2 # -*- coding: utf-8 -*-
3 # 3 #
4 # Copyright (C) 2006 Christopher Lenz 4 # Copyright (C) 2006 Edgewall Software
5 # All rights reserved. 5 # All rights reserved.
6 # 6 #
7 # This software is licensed as described in the file COPYING, which 7 # This software is licensed as described in the file COPYING, which
8 # you should have received as part of this distribution. The terms 8 # you should have received as part of this distribution. The terms
9 # are also available at http://markup.cmlenz.net/wiki/License. 9 # are also available at http://markup.edgewall.org/wiki/License.
10 # 10 #
11 # This software consists of voluntary contributions made by many 11 # This software consists of voluntary contributions made by many
12 # individuals. For the exact contribution history, see the revision 12 # individuals. For the exact contribution history, see the revision
13 # history and logs, available at http://markup.cmlenz.net/log/. 13 # history and logs, available at http://markup.edgewall.org/log/.
14 14
15 from setuptools import setup, find_packages 15 from setuptools import setup, find_packages
16 16
17 setup( 17 setup(
18 name='Markup', version='0.1', 18 name='Markup', version='0.1',
19 description='Toolkit for stream-based generation of markup for the web', 19 description='Toolkit for stream-based generation of markup for the web',
20 author='Christopher Lenz', author_email='cmlenz@gmx.net', 20 author='Edgewall Software', author_email='info@edgewall.org',
21 license='BSD', url='http://markup.cmlenz.net/', 21 license='BSD', url='http://markup.edgewall.org/',
22 packages=find_packages(exclude=['*.tests*']), 22 packages=find_packages(exclude=['*.tests*']),
23 test_suite = 'markup.tests.suite', 23 test_suite = 'markup.tests.suite',
24 zip_safe = True, 24 zip_safe = True,
25 entry_points = """ 25 entry_points = """
26 [python.templating.engines] 26 [python.templating.engines]
Copyright (C) 2012-2017 Edgewall Software