Giter VIP home page Giter VIP logo

Comments (3)

crass avatar crass commented on June 2, 2024

I've added the changes in pull request #1, in a temporary local branch, but I don't see those changes actually installing any files. I'm doing python ./setup.py install --root pwd/ROOT, but ROOT contains none of the python files. Could you get this working an submit a pull request?

from django-debug-toolbar-extras.

tiktuk avatar tiktuk commented on June 2, 2024

I'd love to but for me those changes already fixes everything. Below is the output with the changes applied:

$ python setup.py install
running install
running bdist_egg
running egg_info
writing requirements to django_debug_toolbar_extras.egg-info/requires.txt
writing django_debug_toolbar_extras.egg-info/PKG-INFO
writing top-level names to django_debug_toolbar_extras.egg-info/top_level.txt
writing dependency_links to django_debug_toolbar_extras.egg-info/dependency_links.txt
reading manifest file 'django_debug_toolbar_extras.egg-info/SOURCES.txt'
reading manifest template 'MANIFEST.in'
writing manifest file 'django_debug_toolbar_extras.egg-info/SOURCES.txt'
installing library code to build/bdist.macosx-10.7-x86_64/egg
running install_lib
running build_py
creating build/bdist.macosx-10.7-x86_64
creating build/bdist.macosx-10.7-x86_64/egg
creating build/bdist.macosx-10.7-x86_64/egg/debug_toolbar_extras
copying build/lib/debug_toolbar_extras/__init__.py -> build/bdist.macosx-10.7-x86_64/egg/debug_toolbar_extras
creating build/bdist.macosx-10.7-x86_64/egg/debug_toolbar_extras/panels
copying build/lib/debug_toolbar_extras/panels/__init__.py -> build/bdist.macosx-10.7-x86_64/egg/debug_toolbar_extras/panels
copying build/lib/debug_toolbar_extras/panels/urlconf.py -> build/bdist.macosx-10.7-x86_64/egg/debug_toolbar_extras/panels
creating build/bdist.macosx-10.7-x86_64/egg/debug_toolbar_extras/templates
creating build/bdist.macosx-10.7-x86_64/egg/debug_toolbar_extras/templates/debug_toolbar
creating build/bdist.macosx-10.7-x86_64/egg/debug_toolbar_extras/templates/debug_toolbar/panels
copying build/lib/debug_toolbar_extras/templates/debug_toolbar/panels/urlconf.html -> build/bdist.macosx-10.7-x86_64/egg/debug_toolbar_extras/templates/debug_toolbar/panels
creating build/bdist.macosx-10.7-x86_64/egg/debug_toolbar_extras/templatetags
copying build/lib/debug_toolbar_extras/templatetags/__init__.py -> build/bdist.macosx-10.7-x86_64/egg/debug_toolbar_extras/templatetags
copying build/lib/debug_toolbar_extras/templatetags/debug_toolbar_urlconf.py -> build/bdist.macosx-10.7-x86_64/egg/debug_toolbar_extras/templatetags
byte-compiling build/bdist.macosx-10.7-x86_64/egg/debug_toolbar_extras/__init__.py to __init__.pyc
byte-compiling build/bdist.macosx-10.7-x86_64/egg/debug_toolbar_extras/panels/__init__.py to __init__.pyc
byte-compiling build/bdist.macosx-10.7-x86_64/egg/debug_toolbar_extras/panels/urlconf.py to urlconf.pyc
byte-compiling build/bdist.macosx-10.7-x86_64/egg/debug_toolbar_extras/templatetags/__init__.py to __init__.pyc
byte-compiling build/bdist.macosx-10.7-x86_64/egg/debug_toolbar_extras/templatetags/debug_toolbar_urlconf.py to debug_toolbar_urlconf.pyc
creating build/bdist.macosx-10.7-x86_64/egg/EGG-INFO
copying django_debug_toolbar_extras.egg-info/PKG-INFO -> build/bdist.macosx-10.7-x86_64/egg/EGG-INFO
copying django_debug_toolbar_extras.egg-info/SOURCES.txt -> build/bdist.macosx-10.7-x86_64/egg/EGG-INFO
copying django_debug_toolbar_extras.egg-info/dependency_links.txt -> build/bdist.macosx-10.7-x86_64/egg/EGG-INFO
copying django_debug_toolbar_extras.egg-info/requires.txt -> build/bdist.macosx-10.7-x86_64/egg/EGG-INFO
copying django_debug_toolbar_extras.egg-info/top_level.txt -> build/bdist.macosx-10.7-x86_64/egg/EGG-INFO
zip_safe flag not set; analyzing archive contents...
debug_toolbar_extras.panels.urlconf: module MAY be using inspect.stack
creating dist
creating 'dist/django_debug_toolbar_extras-0.1-py2.7.egg' and adding 'build/bdist.macosx-10.7-x86_64/egg' to it
removing 'build/bdist.macosx-10.7-x86_64/egg' (and everything under it)
Processing django_debug_toolbar_extras-0.1-py2.7.egg
creating /Users/user/.virtualenvs/btnet/lib/python2.7/site-packages/django_debug_toolbar_extras-0.1-py2.7.egg
Extracting django_debug_toolbar_extras-0.1-py2.7.egg to /Users/user/.virtualenvs/btnet/lib/python2.7/site-packages
Adding django-debug-toolbar-extras 0.1 to easy-install.pth file

Installed /Users/user/.virtualenvs/btnet/lib/python2.7/site-packages/django_debug_toolbar_extras-0.1-py2.7.egg
Processing dependencies for django-debug-toolbar-extras==0.1
Searching for django-debug-toolbar==0.9.4
Best match: django-debug-toolbar 0.9.4
Adding django-debug-toolbar 0.9.4 to easy-install.pth file

Using /Users/user/.virtualenvs/btnet/lib/python2.7/site-packages
Finished processing dependencies for django-debug-toolbar-extras==0.1

And this is without the changes:

$ python setup.py install
running install
running bdist_egg
running egg_info
creating django_debug_toolbar_extras.egg-info
writing django_debug_toolbar_extras.egg-info/PKG-INFO
writing top-level names to django_debug_toolbar_extras.egg-info/top_level.txt
writing dependency_links to django_debug_toolbar_extras.egg-info/dependency_links.txt
writing manifest file 'django_debug_toolbar_extras.egg-info/SOURCES.txt'
reading manifest file 'django_debug_toolbar_extras.egg-info/SOURCES.txt'
reading manifest template 'MANIFEST.in'
writing manifest file 'django_debug_toolbar_extras.egg-info/SOURCES.txt'
installing library code to build/bdist.macosx-10.7-x86_64/egg
running install_lib
running build_py
creating build
creating build/lib
creating build/lib/debug_toolbar_extras
copying debug_toolbar_extras/__init__.py -> build/lib/debug_toolbar_extras
creating build/bdist.macosx-10.7-x86_64
creating build/bdist.macosx-10.7-x86_64/egg
creating build/bdist.macosx-10.7-x86_64/egg/debug_toolbar_extras
copying build/lib/debug_toolbar_extras/__init__.py -> build/bdist.macosx-10.7-x86_64/egg/debug_toolbar_extras
byte-compiling build/bdist.macosx-10.7-x86_64/egg/debug_toolbar_extras/__init__.py to __init__.pyc
creating build/bdist.macosx-10.7-x86_64/egg/EGG-INFO
copying django_debug_toolbar_extras.egg-info/PKG-INFO -> build/bdist.macosx-10.7-x86_64/egg/EGG-INFO
copying django_debug_toolbar_extras.egg-info/SOURCES.txt -> build/bdist.macosx-10.7-x86_64/egg/EGG-INFO
copying django_debug_toolbar_extras.egg-info/dependency_links.txt -> build/bdist.macosx-10.7-x86_64/egg/EGG-INFO
copying django_debug_toolbar_extras.egg-info/top_level.txt -> build/bdist.macosx-10.7-x86_64/egg/EGG-INFO
zip_safe flag not set; analyzing archive contents...
creating dist
creating 'dist/django_debug_toolbar_extras-0.1-py2.7.egg' and adding 'build/bdist.macosx-10.7-x86_64/egg' to it
removing 'build/bdist.macosx-10.7-x86_64/egg' (and everything under it)
Processing django_debug_toolbar_extras-0.1-py2.7.egg
Copying django_debug_toolbar_extras-0.1-py2.7.egg to /Users/user/.virtualenvs/btnet/lib/python2.7/site-packages
Adding django-debug-toolbar-extras 0.1 to easy-install.pth file

Installed /Users/user/.virtualenvs/btnet/lib/python2.7/site-packages/django_debug_toolbar_extras-0.1-py2.7.egg
Processing dependencies for django-debug-toolbar-extras==0.1
Finished processing dependencies for django-debug-toolbar-extras==0.1

As you can see the files are not picked up without the changes. But does the current setup.py work for you?

from django-debug-toolbar-extras.

tiktuk avatar tiktuk commented on June 2, 2024

Btw, I also asked some guys in #django to take a look at the current setup.py and they said that those changes were required (and pointed out that there had already been a pull request).

from django-debug-toolbar-extras.

Related Issues (1)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.