Changeset 77:0cce3971aff9 for pycommunity/setup.py
- Timestamp:
- 02/25/07 18:00:36 (21 months ago)
- Files:
-
- 1 modified
-
pycommunity/setup.py (modified) (5 diffs)
Legend:
- Unmodified
- Added
- Removed
-
pycommunity/setup.py
r76 r77 18 18 # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. 19 19 # $Id: $ 20 """ PyCommunity20 """Automatic website builder, using doctests and other reST files. 21 21 22 22 PyCommunity builds an HTML tree out of Python packages, using reST files … … 29 29 Development Status :: 3 - Alpha 30 30 Intended Audience :: Developers 31 License :: OSI Approved :: G PL v231 License :: OSI Approved :: GNU General Public License (GPL) 32 32 Programming Language :: Python 33 33 Topic :: Software Development … … 60 60 etc_files.append(path) 61 61 62 url = "http://programmation-python.org/pycommunity" 62 63 63 64 setup(name="PyCommunity", … … 65 66 maintainer="Tarek Ziade", 66 67 maintainer_email="tarek@ziade.org", 67 url = "http://programmation-python.org/pyc", 68 url = url, 69 download_url = '%s/PyCommunity-0.1a-py2.5.egg' % url, 68 70 license = "http://www.gnu.org/copyleft/gpl.html", 69 71 platforms = ["any"], … … 73 75 scripts = ['pycy'], 74 76 packages = ['pycommunity'], 75 install_requires = ['cheesecake', 'cheetah', 'epydoc' ],77 install_requires = ['cheesecake', 'cheetah', 'epydoc' , 'pygments'], 76 78 data_files = [('/etc/pycommunity', etc_files)]) 77 79
