I have a python script, myscript.py, which I wish to install using distutils: from distutils.core import setup
I\'m trying to compile a program using distutils but I want to make sure that the user has Tkinter installed before installi开发者_如何转开发ng my package.
I am trying to build the example that comes with the source distribution of python under PC\\example_nt
I have such structure: setup.py package __init__.py sub_package ___init__.py sub_package2 __init__.py If I install package via setup.py install, then it works as appreciated (by copying whole packa
Right now I\'ve got a project that has the following layout: foo/ __init__.py __main__.py foo.py In this case, foo.py is actually the main api file, so developers are meant t开发者_开发百科o do \"f
I\'ve got a program/joke that needs a reasonably large data structure to operate, (a dictionary that takes a few开发者_JS百科 seconds to construct) and I would like to create and pickle it into the in
i am using setuptools to create and upload a sdist package to PyPI. however everytime i run python setup.py sdist, it includes the dist/ folder and its contents, which i dont want . this behavoir do
I just got some space on a VPS server(running on ubuntu 8.04), and I\'m trying to install django on it. The server has python 2.5 installed, but I guess its non standard installation. When I run insta
When I run python setup.py sdist it creates an sdist in my ./dist directory. This includes a \"PROJECT-egg.info\" file in the zip inside my \"dist\" folder, which I don\'t use, but it doesn\'t hurt
Let\'s take the following project layout: $ ls -R . .: packagesetup.py ./package: __init__.pydirfile.datmodule.py