distutils
Directly call distutils' or setuptools' setup() function with command name/options, without parsing the command line?
I\'d like to call Python\'s distutils\' or setuptools\' setup() function in a slightly unconventional way, but I\'m not sure whether distutils is meant for this kind of usage.[详细]
2022-12-30 08:28 分类:问答setting permissions of python module (python setup install)
I am configuring a distutils-based setup.py for a python module that is to be installed on a heterogeneous set of resources.Due to the heterogeneity, the location where the module is installed is not[详细]
2022-12-28 17:05 分类:问答setup.py adding options (aka setup.py --enable-feature )
I\'m looking for a way to include some feature in a python (extension) module in installation phase. In a practical manner:[详细]
2022-12-28 07:02 分类:问答Missing multiprocessing module when freezing Python code
I\'m using cx_Freeze to freeze my Python code so I can distribute it as executable on Windows systems. It works fine but it\'s missing a few modules. I use some open-source libraries in my project e.g[详细]
2022-12-25 09:58 分类:问答How can I bundle other files when using cx_freeze?
I\'m using Python 2.6 and cx_Freeze 4.1.2 on a Windows system. I\'ve created the setup.py to build my executable and everything works fine.[详细]
2022-12-25 01:21 分类:问答Which files to distribute using cx_Freeze?
I\'m using cx_freeze to freeze a Python script for distribution 开发者_运维知识库to other windows systems. I did everything as instructed and cx_freeze generated abuild\\exe.win32-2.6 folder in the fo[详细]
2022-12-25 01:09 分类:问答Compiler options wrong with python setup.py
I\'m trying to install matplotlib on my mac setup. I find that setup.py has inaccurate flags, in particular the isysroot points to an earlier SDK.[详细]
2022-12-23 07:45 分类:问答Can distutils use a custom .def to expose extra symbols when it compiles a Windows .dll?
I\'m abusing distutils to compile an extension module for Python, but rather than using the Python C API I\'m using ctypes to talk to the resulting shared library.[详细]
2022-12-21 18:33 分类:问答Does setup.py's extras_require keyword support comma-separated extras?
Setuptools lets you list requirements for optional features # mypackage \'extras_require\' : { \'PDF\' : [\'reportlab\'], \'DOCX\' : [\'docxlib\'] }[详细]
2022-12-21 05:07 分类:问答How can I make this long_description and README differ by a couple of sentences?
For a package of mine, I have a README.rst file that is read into the setup.py\'s long description like so:[详细]
2022-12-17 21:25 分类:问答