gem - python tool to create skeleton for PyPI package? -
i want write first python package can upload pypi. question is there tool initialize required skeleton pypi package ? far have found instructions here http://peterdowns.com/posts/first-time-with-pypi.html requires me create files manually. come perl background , in perl use following create skeleton cpan module.
module-starter --module=foo::bar --author="foo bar" --email=foo@bar.com
in ruby
bundle gem foo::bar
i surprised there isn't similar in python or may couldn't find it.
thanks
there one: cookiecutter-pypackage
by way, think should hand @ first can have better understanding how creat python package. when you're familiar it, can use tools make task automatically.
further reading:
- the official package guide: python packaging user guide
- open sourcing python project right way
- cookiecutter: project templates made easy
Comments
Post a Comment