comparison examples/turbogears/setup.py @ 230:84168828b074 trunk

Renamed Markup to Genshi in repository.
author cmlenz
date Mon, 11 Sep 2006 15:07:07 +0000
parents 64ff134868c4
children
comparison
equal deleted inserted replaced
229:58d974683419 230:84168828b074
1 from setuptools import setup, find_packages 1 from setuptools import setup, find_packages
2 from turbogears.finddata import find_package_data 2 from turbogears.finddata import find_package_data
3 3
4 import os 4 import os
5 execfile(os.path.join("markuptest", "release.py")) 5 execfile(os.path.join("genshitest", "release.py"))
6 6
7 setup( 7 setup(
8 name="MarkupTest", 8 name="GenshiTest",
9 version=version, 9 version=version,
10 10
11 # uncomment the following lines if you fill them out in release.py 11 # uncomment the following lines if you fill them out in release.py
12 #description=description, 12 #description=description,
13 #author=author, 13 #author=author,
17 #license=license, 17 #license=license,
18 18
19 install_requires = [ 19 install_requires = [
20 "TurboGears >= 0.9a9dev-r1686", 20 "TurboGears >= 0.9a9dev-r1686",
21 ], 21 ],
22 scripts = ["start-markuptest.py"], 22 scripts = ["start-genshitest.py"],
23 zip_safe=False, 23 zip_safe=False,
24 packages=find_packages(), 24 packages=find_packages(),
25 package_data = find_package_data(where='markuptest', 25 package_data = find_package_data(where='genshitest',
26 package='markuptest'), 26 package='genshitest'),
27 keywords = [ 27 keywords = [
28 # Use keywords if you'll be adding your package to the 28 # Use keywords if you'll be adding your package to the
29 # Python Cheeseshop 29 # Python Cheeseshop
30 30
31 # if this has widgets, uncomment the next line 31 # if this has widgets, uncomment the next line
Copyright (C) 2012-2017 Edgewall Software