├── .gitignore ├── .travis.yml ├── CONTRIBUTING.md ├── LICENSE └── README.rst /.gitignore: -------------------------------------------------------------------------------- 1 | *.py[cod] 2 | 3 | # Created during tests 4 | .cache/ 5 | 6 | # Unit test / coverage reports 7 | .coverage 8 | .tox 9 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- 1 | language: python 2 | 3 | python: 3.5 4 | env: 5 | - TOXENV=py27 6 | - TOXENV=py33 7 | - TOXENV=py34 8 | - TOXENV=py35 9 | 10 | install: 11 | - pip install -U tox 12 | 13 | script: 14 | - tox 15 | -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- 1 | # Contributing 2 | 3 | PyBee <3's contributions! 4 | 5 | Please be aware, PyBee operates under a Code of Conduct. 6 | 7 | See [CONTRIBUTING to PyBee](http://pybee.org/contributing) for details. 8 | 9 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | Copyright (c) 2014 Russell Keith-Magee. 2 | 3 | Permission is hereby granted, free of charge, to any person obtaining a copy 4 | of this software and associated documentation files (the "Software"), to deal 5 | in the Software without restriction, including without limitation the rights 6 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 7 | copies of the Software, and to permit persons to whom the Software is 8 | furnished to do so, subject to the following conditions: 9 | 10 | The above copyright notice and this permission notice shall be included in 11 | all copies or substantial portions of the Software. 12 | 13 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 14 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 15 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 16 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 17 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 18 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 19 | THE SOFTWARE. 20 | -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- 1 | Python iOS Template 2 | =================== 3 | 4 | A template for building Python apps that will run under iOS. 5 | 6 | The easiest way to use this project is to not use it at all - at least, 7 | not directly. `Briefcase `__ is a 8 | tool that uses this template, rolling it out using data extracted from 9 | your ``setup.py``. 10 | 11 | The master branch of this repository has no content; there is an 12 | independent branch for each supported version of Python. The following 13 | Python versions are supported: 14 | 15 | * `Python 2.7 `__ 16 | * `Python 3.4 `__ 17 | * `Python 3.5 `__ 18 | * `Python 3.6 `__ 19 | * `Python 3.7 `__ 20 | 21 | See the individual branches for usage instructions. 22 | --------------------------------------------------------------------------------