zorkian / nagios-api

A REST-like, JSON interface to Nagios
BSD 3-Clause "New" or "Revised" License
586 stars 173 forks source link

Publish to PyPi #20

Closed theduke closed 11 years ago

theduke commented 11 years ago

Great project!

I am wondering though, why you have not published nagios-api to PyPi. You already have a setup.py, publishing only takes a couple of minutes!

http://guide.python-distribute.org/contributing.html

zorkian commented 11 years ago

Thanks for the nudge. I've done so here:

http://pypi.python.org/pypi/nagios-api/1.0

This is my first PyPI submission so feedback is welcome.

theduke commented 11 years ago

Great, thanks.

Suggestions for setup.py:

-) Add the license: license='New BSD License',

Add the readme file as a long description for PyPI long_description=open('README').read(),

alq666 commented 11 years ago

In order for easy_install nagios-api or pip install nagios-api to work I think you need to also run: python setup.py sdist upload

zorkian commented 11 years ago

Thank you for the suggestions! Done, and now:

http://pypi.python.org/pypi/nagios-api/1.1

It seemed to work. I was able to build a package using fpm -- which uses the pypi repository?