rnithyanand / dpkt

Automatically exported from code.google.com/p/dpkt
Other
0 stars 0 forks source link

Cannot use setup.py develop #63

Open GoogleCodeExporter opened 9 years ago

GoogleCodeExporter commented 9 years ago
What steps will reproduce the problem?
1. Checkout fresh SVN copy
2. sudo ./setup.py develop

What is the expected output? What do you see instead?
It's supposed to set up a link to the working tree, so changes in the
working tree are 'installed' immediately. Instead, I just get the error
"invalid command 'develop'".

Please provide any additional information below.
It is (at least short-term) fixable by simply importing setuptools in
setup.py. Patch attached, for what it's worth.

Original issue reported on code.google.com by andrewf...@gmail.com on 31 Jan 2011 at 9:11

Attachments:

GoogleCodeExporter commented 9 years ago
I think it would be better the patch was:

-from distutils.core import setup
+from setuptools import setup
import dpkt

Original comment by r...@itevenworks.net on 19 Nov 2013 at 4:02