Python packages of recent versions of appy

Asked by Kostia Lopuhin

Is there any way to install a recent version of appy.pod via pip? Here http://pypi.python.org/pypi/appy.pod the last version is 0.3.0, updated in 2009. and I found no other place.

Question information

Language:
English Edit question
Status:
Answered
For:
Appy Edit question
Assignee:
No assignee Edit question
Last query:
Last reply:
Revision history for this message
Gaëtan Delannay (gaetan-delannay) said :
#1

Hi! No, currently there is only this good old zip file at http://launchpad.net. Do you have some unzip tool ;-)
Script for publishing to Pypi needs some finalization... soooOOooorry

Revision history for this message
Kostia Lopuhin (kostia-lopuhin) said :
#2

Maybe a simple setup.py will be helpful to somebody:

#!/usr/bin/env python
# encoding: utf-8

from distutils.core import setup

setup(name='appy',
      version='0.6.6',
      description='appy',
      author=u'Gaëtan Delannay',
      <email address hidden>",
      license="GPL",
      keywords="pod, pdf, odt, document, plone, django",
      url='http://appyframework.org',
      package_data={'appy.pod': ['*.xml']},
      packages=['appy', 'appy.shared', 'appy.pod'],
    )

download appy 0.6.6, extract to e.g. appy-package, add empty appy-package/appy/__init__.py file, and place setup.py at appy-package/setup.py. Tested under Ubuntu 11.04 with python2.7

Can you help with this problem?

Provide an answer of your own, or ask Kostia Lopuhin for more information if necessary.

To post a message you must log in.