¡@

Home 

python Programming Glossary: find_packages

Install PIL in Ubuntu 12.04 Python 2.7 and Python 3.2

http://stackoverflow.com/questions/15002538/install-pil-in-ubuntu-12-04-python-2-7-and-python-3-2

line 10 in module from setuptools import Extension setup find_packages ImportError No module named setuptools Example 2 root@sys ~.. line 10 in module from setuptools import Extension setup find_packages ImportError No module named setuptools UPDATE 2 After i have..

Including non-Python files with setup.py

http://stackoverflow.com/questions/1612733/including-non-python-files-with-setup-py

a full but untested example from setuptools import setup find_packages setup name 'your_project_name' version '0.1' description 'A.. version '0.1' description 'A description.' packages find_packages exclude 'ez_setup' 'tests' 'tests. ' package_data '' 'license.txt'..

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

and change setup.py to from setuptools.import setup find_packages readme open 'README.txt' .read setup name 'MyProject' version.. package that says hello' long_description readme packages find_packages Releasing to the public Get a PyPI account you only need to..

Python package structure, setup.py for running unit tests

http://stackoverflow.com/questions/6164004/python-package-structure-setup-py-for-running-unit-tests

# usr bin env python from setuptools import setup find_packages setup version '0.1' description 'Trend following library' author.. 'Nate Reed' author_email 'nate@natereed.com' packages find_packages install_requires 'numpy' test_suite tests When I run 'python..

How to include package data with setuptools/distribute?

http://stackoverflow.com/questions/7522250/how-to-include-package-data-with-setuptools-distribute

it. Can someone please advise setup name 'myapp' packages find_packages package_data 'myapp' 'data .txt' include_package_data True zip_safe..