2016-pycon-tutorial icon indicating copy to clipboard operation
2016-pycon-tutorial copied to clipboard

Materials for "Creating, building, testing, and documenting a Python project - a hands-on HOWTO - PyCon 2016"

Results 6 2016-pycon-tutorial issues
Sort by recently updated
recently updated
newest added

## Create drone.io build - Login to [drone.io](http://drone.io/) and press "New Project" - Select github - Find your project! - Copy this in for your build script: ``` pip install...

- [x] some announcements - [x] who we are - [x] what we do - [x] some of our background - [x] questions about YOUR background! continuous integration; testing; doc...

The **Python Package Authority** (PyPA) has very nice guides explaining what goes on `setup.py`, and best practices overall: https://packaging.python.org/en/latest/distributing/ **Shablona** is a template for scientific packages. They provide a directory...

Whenever you `pip install` a package, it's being pulled from PyPI, the central Python package database. If you want your projects to be `pip` installable, you'll need to put them...

- [ ] Show reST documentation again on github -- [library](https://github.com/dib-lab/2016-pycon-tutorial-project/blob/master/doc/library.rst) and [command-line](https://github.com/dib-lab/2016-pycon-tutorial-project/blob/master/doc/command-line.rst) - [ ] Mention GitHub rendering! Motivate sphinx/RTD. - [ ] Goals of using sphinx: table of...

Here's a stub for setup.py. You'll have to edit the `name` field, as PyPI won't accept duplicate project names. You'll create this file in your project root. ``` from setuptools...