forked from jrfonseca/xdot.py
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add setup script (Marius Gedminas, issue jrfonseca#19).
- Loading branch information
Jose.R.Fonseca
committed
Aug 9, 2009
1 parent
bd53e1b
commit 9b07a40
Showing
1 changed file
with
28 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
#!/usr/bin/env python | ||
from setuptools import setup | ||
|
||
setup( | ||
name='xdot', | ||
version='0.4', | ||
author='Jose Fonseca', | ||
author_email='[email protected]', | ||
url='http://code.google.com/p/jrfonseca/wiki/XDot', | ||
description="Interactive viewer for Graphviz dot files", | ||
long_description=""" | ||
xdot.py is an interactive viewer for graphs written in Graphviz's dot | ||
language. | ||
It uses internally the graphviz's xdot output format as an intermediate | ||
format, and PyGTK and Cairo for rendering. | ||
xdot.py can be used either as a standalone application from command | ||
line, or as a library embedded in your python application. | ||
""", | ||
license="LGPL", | ||
|
||
py_modules=['xdot'], | ||
entry_points=dict(gui_scripts=['xdot=xdot:main']), | ||
|
||
# This is true, but pointless, because easy_install PyGTK chokes and dies | ||
#install_requires=['PyGTK', 'pycairo'], | ||
) |