easy_install paste sudo easy_install PasteDeploy sudo easy_install PasteScript
package-new.txt redirects here.
if module should be installed on new systems, be sure to add it to: /c/system/startup.sh (/c/system/startup-python.sh is for non-locally developed modules)
then run install commands on your system so it is available for development:
- $ paster create --list-templates
- Available templates: basic_namespace: A project with a namespace package
- basic_package: A basic setuptools-enabled package nested_namespace: A project with two nested namespaces. paste_deploy: A web application deployed through paste.deploy
paster create
Enter project name: converter Variables:
egg: converter package: converter project: converter
Enter version (Version (like 0.1)) ['']: Enter description (One-line description of the package) ['']: A collection of scripts to assist in converting playlists found in one format to another. Also see the medialist module. Enter long_description (Multi-line description (in reST)) ['']: Enter keywords (Space-separated keywords/tags) ['']: playlists medialists conversion converter playlist medialist Enter author (Author name) ['']: Charles Brandt Enter author_email (Author email) ['']: code@contextiskey.com Enter url (URL of homepage) ['']: http://contextiskey.com Enter license_name (License name) ['']: MIT Enter zip_safe (True/False: if the package can be distributed as a .zip file) [False]:
creating an egg from a local module: easy_install -U ZopeSkel
easy_install -U PasteScript paster create -t basic_package
after editing all of the files: python setup.py bdist_egg