¡@

Home 

python Programming Glossary: py_modules

How do I make Pip respect requirements?

http://stackoverflow.com/questions/12372336/how-do-i-make-pip-respect-requirements

'my_project' description Just a test project version 1.0 py_modules 'sample' requires 'requests' I wrote a simple sample.py import.. 'my_project' description Just a test project version 1.0 py_modules 'sample' install_requires 'requests' I can recommend the Hitchhiker's..

How do I propagate C++ exceptions to Python in a SWIG wrapper library?

http://stackoverflow.com/questions/1394484/how-do-i-propagate-c-exceptions-to-python-in-a-swig-wrapper-library

user defined exceptions...' ext_modules mylibrary_module py_modules mylibrary Note the compile flag EHsc which I needed on Windows..

How to make easy_install execute custom commands in setup.py?

http://stackoverflow.com/questions/1446682/how-to-make-easy-install-execute-custom-commands-in-setup-py

'any' description 'Test package' author 'Someone' py_modules 'myfoobar' cmdclass 'install' install The same thing happens..

MANIFEST.in ignored on “python setup.py install” - no data files installed?

http://stackoverflow.com/questions/3596979/manifest-in-ignored-on-python-setup-py-install-no-data-files-installed

'whyteboard.lib.pubsub.utils' 'whyteboard.misc' py_modules 'whyteboard' scripts 'whyteboard.py' MANIFEST.in include .txt.. make much sense to have both a whyteboard.py module in py_modules and a whyteboard __init__.py package in packages. The two are..

How to create a python 2.x package - simple case

http://stackoverflow.com/questions/4155914/how-to-create-a-python-2-x-package-simple-case

setup setup name 'MyProject' version '0.1' py_modules 'my_package' my_package.py class hello def greet self print.. 'MIT' description 'Example package that says hello' py_modules 'my_package' Including extra files in the package Next you should..

Python distutils, how to get a compiler that is going to be used?

http://stackoverflow.com/questions/724664/python-distutils-how-to-get-a-compiler-that-is-going-to-be-used

'.. .. include' setup name 'wripaca' ext_modules mod py_modules wripaca cmdclass 'build_ext' build_ext_subclass share improve..

How to build debian package with CPack to execute setup.py?

http://stackoverflow.com/questions/7249440/how-to-build-debian-package-with-cpack-to-execute-setup-py

'1.0.5' description 'Python modules used by fake package' py_modules 'fake_package.fake_module_1' 'fake_package.fake_module_2' scripts..

How do I write a setup.py for a twistd/twisted plugin that works with setuptools, distribute, etc?

http://stackoverflow.com/questions/7275295/how-do-i-write-a-setup-py-for-a-twistd-twisted-plugin-that-works-with-setuptools

import setup # When pip installs anything from packages py_modules or ext_modules that # includes a twistd plugin which are installed..