summaryrefslogtreecommitdiff
path: root/graphics/py-graph-dot/files/patch-setup.py
blob: 89d543f758fd65e228e46271b8deb739132a7f01 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
--- 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",