distutils
Require BeautifulSoup in a Python Package - What's needed in setup.py?
I\'m writing a setup script for a python distribution, foo. My code requires BeautifulSoup, so currently my directory is structured like so:[详细]
2023-04-08 11:36 分类:问答Setuptools / distutils: Installing files into the distribution's DLLs directory on Windows
I\'m writing a setup.py which uses setuptools/distutils to install a python package I wrote. It need to install two DLL files (actually a DLL file and a PYD file) into location which is available for[详细]
2023-04-06 22:57 分类:问答Python command to create no-arch rpm's
I am creating rpm\'s for my project which is in pure python. I am running the command python setup.py bdist_rpm[详细]
2023-04-04 06:53 分类:问答Override default installation directory for Python bdist Windows installer
Is开发者_如何学JAVA it possible to specify during the installer generation (or during the actual installation) a custom path for Python modules? By way of example, let\'s say I have 5 modules for whic[详细]
2023-04-03 19:57 分类:问答How can I find additional files installed with my python package from an included script?
I\'ve built a python package that installs with a number of external files. I need to be able to read those files from a script that gets installed with the package. I can see that I can use __file__[详细]
2023-04-01 22:18 分类:问答How to make Python and distutils use the right SDK on Mac OS X?
I use Python on Mac OS X version 10.6. I recently installed the newest Mac OS X developer tools SDK, which has GCC in it.The SDKs I have are:[详细]
2023-04-01 05:29 分类:问答How do I write a setup.py for a twistd/twisted plugin that works with setuptools, distribute, etc?
The Twisted Plugin Systemis the preferred way to write extensible twisted applications. However, due to the way the plugin system is structured (plugins go into a twisted/plugins directory which sho[详细]
2023-04-01 03:45 分类:问答Best practices for Python deployment -- multiple versions, standard install locations, packaging tools etc
Many posts on different aspects of this question but I haven\'t seen a post that brings it all together.[详细]
2023-03-31 07:06 分类:问答Is there a standard way to create Debian packages for distributing Python programs?
There 开发者_StackOverflow中文版is a ton of information on how to do this, but since \"there is more than one way to skin a cat\", and all the tutorials/manuals that cover a bit of the process seem to[详细]
2023-03-28 20:48 分类:问答Packaging a Python Program with custom built libraries
I am trying to find a solution for a problem I am working on.I have a python program which is is using a custom built sqlite3 install (which allows > 10 simultaneous connections) and in addition requi[详细]
2023-03-26 13:34 分类:问答