Upgrade to Pro — share decks privately, control downloads, hide ads and more …

Jak zveřejnit knihovnu

Sponsored · SiteGround - Reliable hosting with speed, security, and support you can count on.

Jak zveřejnit knihovnu

Jak dostat open-source do světa. Přednáška pro říjnové PyVo 2012.

Avatar for Petr Viktorin

Petr Viktorin

October 25, 2012

More Decks by Petr Viktorin

Other Decks in Programming

Transcript

  1. setup.py from setuptools import setup , find_packages setup ( name=

    ' Moje knihovna ' , version= ' 0.0.1 ' , author= ' Já První ' , author_email= ' ja@example .com ' , scripts =[ ' bin / necodelej ' ] , url = ' http : / / github .com/ ja / mojeknihovna / ' , license = 'MIT ' , description = ' Moje první knihovna . ' , install_requires =[ " docopt >= 0.5.0 " , ] , packages=find_packages ( ) , long_description=open ( 'README ' ) . read ( ) , c l a s s i f i e r s =[... ] , )
  2. Na PyPI s tím! http://pypi.python.org/pypi $ python setup.py sdist $

    python setup.py register $ python setup.py upload
  3. ? Petr Viktorin @encukou [email protected] github.com/encukou Licence slajdů & videa:

    Creative Commons Attribution-ShareAlike 3.0 http://creativecommons.org/licenses/by-sa/3.0/