ports/graphics/py-graph-dot/files/patch-setup.py
Li-Wen Hsu ef6013d2a8 - Update to 1.6.1
PR:		ports/136732
Submitted by:	Yi-Jheng Lin <yzlin AT cs.nctu.edu.tw> (maintainer)
2009-07-14 07:22:57 +00:00

26 lines
856 B
Python

--- setup.py.orig
+++ setup.py
@@ -4,12 +4,7 @@
import os
import logging
-try:
- from setuptools import setup, find_packages
-except ImportError, ie:
- import ez_setup
- ez_setup.use_setuptools()
- from setuptools import setup, find_packages
+from setuptools import setup, find_packages
# Startup
appname = "python-graph"
@@ -40,9 +35,6 @@
name = appname,
version = appversion,
packages = ['pygraph', 'pygraph.algorithms', 'pygraph.algorithms.filters', 'pygraph.algorithms.heuristics', 'pygraph.classes', 'pygraph.readwrite'],
- data_files = [(docsdir,docsfiles),
- (datadir,datafiles)],
- install_requires = ['pydot'],
author = "Pedro Matiello",
author_email = "pmatiello@gmail.com",
description = "A library for working with graphs in Python",