kartagis / pysimplesoap

Automatically exported from code.google.com/p/pysimplesoap
0 stars 0 forks source link

Egg should be on pypi and have a setup.py #17

Closed GoogleCodeExporter closed 8 years ago

GoogleCodeExporter commented 8 years ago
This egg should be on pypi and installabel with easy_install or pip.

Please add a "setuo.py". The easiest way is to use ZopeSkel, Paster to generate 
all needed files.

$ bin/easy_install ZopeSkel
$ bin/paster create -t basic_package pysimplesoap
...

Here some info:

http://mrtopf.de/blog/en/a-small-introduction-to-python-eggs/
http://packages.python.org/distribute/setuptools.html#id3

Original issue reported on code.google.com by delij...@gmail.com on 3 Nov 2010 at 11:32

Attachments:

GoogleCodeExporter commented 8 years ago
Great, do you want to be the maintainer of the pypi package?

I have no time now for this, I can give you commit and pypi access.

Original comment by reingart@gmail.com on 23 Nov 2010 at 11:44

GoogleCodeExporter commented 8 years ago
IMHO zopeSkel, Paster etc. are not needed, just create a setup.py in the base 
directory and move the files in a package directory (that would require 
reorganizing the repo). 

setup.py would look like this:

#!/usr/bin/env python

from distutils.core import setup

setup(name='pysimplesoap',
      version='1.0',
      description='Python Simple SOAP Library',
      author='Mariano Reingart',
      author_email='reingart@gmail.com',
      url='http://code.google.com/p/pysimplesoap',
      packages=['pysimplesoap',],
     )

Then 
* python setup.py register
* python setup.py sdist upload

I could do that for you, if you prefer.

Original comment by ralf.hen...@gmail.com on 18 Jan 2011 at 8:42

GoogleCodeExporter commented 8 years ago
Sorry for the delay, 

I'll be glad if you can apply this changes and mantain the pypi stuff, i've 
given you contributor permissions, including commit and edit wiki/issue access.

Original comment by reingart@gmail.com on 21 Jan 2011 at 8:56

GoogleCodeExporter commented 8 years ago
Added the setup.py and adapted repository structure. 
The steps:

* python setup.py register
* python setup.py sdist upload

have to be completed by you, since I'm not allowed to upload to your pypi 
account.

Original comment by ralf.hen...@gmail.com on 24 Jan 2011 at 8:18

GoogleCodeExporter commented 8 years ago

Original comment by reingart@gmail.com on 8 Jan 2012 at 1:23