{
"info": {
"author": "Kevin S. Phillips",
"author_email": "thefriendlycoder@gmail.com",
"bugtrack_url": null,
"classifiers": [
"Development Status :: 3 - Alpha",
"Environment :: Console",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 3",
"Topic :: Software Development :: Libraries"
],
"description": ".. image:: https://travis-ci.org/TheFriendlyCoder/python_template.svg?tag=0.0.6\n :target: https://travis-ci.org/TheFriendlyCoder/python_template\n :alt: Build Automation\n\n\n.. image:: https://coveralls.io/repos/github/TheFriendlyCoder/python_template/badge.svg?tag=0.0.6\n :target: https://coveralls.io/github/TheFriendlyCoder/python_template?tag=0.0.6\n :alt: Test Coverage\n\n\n.. image:: https://img.shields.io/pypi/pyversions/ksp_sample.svg\n :target: https://pypi.python.org/pypi/ksp_sample\n :alt: Python Versions\n\n\n.. image:: https://readthedocs.org/projects/ksp_sample/badge/?version=0.0.6\n :target: http://ksp_sample.readthedocs.io/en/0.0.6\n :alt: Documentation Status\n\n\n.. image:: https://requires.io/github/TheFriendlyCoder/python_template/requirements.svg?tag=0.0.6\n :target: https://requires.io/github/TheFriendlyCoder/python_template/requirements/?tag=0.0.6\n :alt: Requirements Status\n\n\n.. image:: https://img.shields.io/pypi/format/ksp_sample.svg\n :target: https://pypi.python.org/pypi/ksp_sample/\n :alt: Package Format\n\n\n.. image:: https://img.shields.io/pypi/dm/ksp_sample.svg\n :target: https://pypi.python.org/pypi/ksp_sample/\n :alt: Download Count\n\n\n.. image:: https://img.shields.io/pypi/l/ksp_sample.svg\n :target: https://www.gnu.org/licenses/gpl-3.0-standalone.html\n :alt: GPL License\n\n\nOverview\n========\n\nThis is a template project I use for my personal projects, to remind me how\nto set up projects, folder structures, etc. and how to integrate the projects\nwith Travis CI, PyPI, and other such services.\n\nCreating a new project\n-----------------------\n\n* clone the project files\n* rename the 'src/ksp_sample' subfolder to reflect the new project name\n* update the project specific parameters in the 'project.prop' file in the root folder\n* update the import path in the \"./tests/test_version.py\" script to reflect\n your new project name\n* activate project on `travis-ci.org `_\n\n * log in to the Travis CI website\n * hover over your avatar in the top-right corner and select 'settings'\n * click the \"sync account\" button in the left side-bar\n * refresh your browser page to make sure your list of projects is up to date\n * find your project in the list and click the slider to turn on support\n * click the small cog icon next to your new project to configure settings\n * Under environment variables, define the following variables (needed to publish Python packages):\n\n * *DEPLOY_USER* User name to log in to PyPI package repository\n * *DEPLOY_PASS* Password for the PyPI user\n\n * Under cron set the master branch to build once a month\n * so long as your project has a .travisci.yml file in the root folder the build should automatically start\n\n* activate project on `readthedocs.org `_\n\n * log in to the ReadTheDocs website\n * click the drop-down list on your name in the top-left corner and select \"My Projects\"\n * click \"Import a Project\"\n * To import automatically, try clicking the \"Refresh\" button to load your Github projects, and select the one(s) to load\n * To import manually, click \"Import Manually\"\n * Under \"Name of Project\" enter the name of the Github project without the URL or .git extension\n * Under the \"Repository URL\" field, copy-paste the HTTPS URL used for cloning the Github project\n * Check the \"Advanced Options\" check box and click \"Next\"\n * Fill out the advanced properties as desired\n\n* activate project on `coveralls.io `_\n\n * log in to the coveralls dashboard\n * click \"add repo\"\n * search for new repo in the list\n * click the \"on\" button to enable coverage analysis\n\n* activate project on `requires.io `_\n\n * log in to the requires dashboard\n * click on the \"repositories\" button at the top\n * wait for the project list to refresh and show your new project\n * click the \"Activate\" button next to your repo\n\n* modify the 'fail_under' value in the .coveragerc file to a reasonable value for unit test coverage (ie: 90% say)\n* For consistency, set the following to the same 'short descriptive' text for the project:\n\n * title on GitHub project\n * description of readthedocs page\n * DistUtils project short description in the setup.py\n * first line of the readme.rst\n\nUsing the project\n-----------------\n\n* to generate a package do the following: :code:`python setup.py bdist_wheel`\n* uploading of new versions to pypi is handled automatically via Travis CI\n\n * NOTE: After tagging a new release, you will need to enable the docs for\n the release on readthedocs.org. Log in, locate the project in question,\n click on settings -> versions and make sure the check box labelled\n \"active\" is checked for the new version.\n\n* Updating the API docs and generating sample HTML output is done as follows:\n :code:`tox -e py3-docs`\n* make sure to add any new project dependencies to the project.prop file\n as requirements change\n\nTIPS\n----\n\n* make sure your project name doesn't use underscores in the name because pypi packages will convert them to dashes when being published which creates a subtle discrepancy between the module name and the package name, which can lead to confusion\n* make sure your project name doesn't use dashes in the name because you'll need to name your module with the dash for consistency but then the project will fail the PEP8 validation check because the name doesn't satisfy the snake-case naming requirements.\n* to make some of the badges work you'll need to upload a version to pypi\n* all development work should be done in a local virtual environment under a ./venv subfolder (ie: :code:`virtualenv -p python3 ./venv && . ./venv/bin/activate` )\n* you can add PyCharm projects to the repo. Just exclude the files listed in the .gitignore file.\n\nLinks\n-----\n\n* badge related blog: http://thomas-cokelaer.info/blog/2014/08/1013/\n\n\n",
"description_content_type": "",
"docs_url": null,
"download_url": "",
"downloads": {
"last_day": -1,
"last_month": -1,
"last_week": -1
},
"home_page": "https://github.com/TheFriendlyCoder/ksp_sample",
"keywords": "space separated tags",
"license": "GPL",
"maintainer": "",
"maintainer_email": "",
"name": "ksp-sample",
"package_url": "https://pypi.org/project/ksp-sample/",
"platform": "",
"project_url": "https://pypi.org/project/ksp-sample/",
"project_urls": {
"Homepage": "https://github.com/TheFriendlyCoder/ksp_sample"
},
"release_url": "https://pypi.org/project/ksp-sample/0.0.6/",
"requires_dist": [
"six",
"twine; extra == 'dev'",
"pytest; extra == 'dev'",
"pytest-cov; extra == 'dev'",
"mock; extra == 'dev'",
"pylint; extra == 'dev'",
"sphinx; extra == 'dev'",
"tox; extra == 'dev'"
],
"requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, <4",
"summary": "Project Short Description",
"version": "0.0.6"
},
"last_serial": 4802368,
"releases": {
"0.0.1": [
{
"comment_text": "",
"digests": {
"md5": "bbf76a9db10f1d24b0267335897442ae",
"sha256": "18623e5d159d6bbcf5689330c377b08d97d96870fe296fb77859d284fa41bb23"
},
"downloads": -1,
"filename": "ksp_sample-0.0.1-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "bbf76a9db10f1d24b0267335897442ae",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, <4",
"size": 7422,
"upload_time": "2019-02-10T00:36:07",
"url": "https://files.pythonhosted.org/packages/3d/cb/4eb7895ef56841910f5cb2737917351eea537e84a85dd12579e692dbd505/ksp_sample-0.0.1-py2.py3-none-any.whl"
}
],
"0.0.3": [
{
"comment_text": "",
"digests": {
"md5": "604852a72096b10e3452367412b72327",
"sha256": "28cfbb1424e7276a9dee64119fd7b6017ffccd01998166f70e0e9f04661ab368"
},
"downloads": -1,
"filename": "ksp_sample-0.0.3-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "604852a72096b10e3452367412b72327",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, <4",
"size": 7465,
"upload_time": "2019-02-10T00:49:57",
"url": "https://files.pythonhosted.org/packages/ed/e5/5c6f16e7f55c53f36d17939c686524bd2584057f7f3189dcb36bb31ff1fc/ksp_sample-0.0.3-py2.py3-none-any.whl"
}
],
"0.0.4": [
{
"comment_text": "",
"digests": {
"md5": "4c88f4c203c8e4d768f22a1a7d78c55e",
"sha256": "32b0066241866ee9e485998686d5960104ecbc5b2fa8fad6574a3396d5741fdc"
},
"downloads": -1,
"filename": "ksp_sample-0.0.4-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "4c88f4c203c8e4d768f22a1a7d78c55e",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, <4",
"size": 7470,
"upload_time": "2019-02-10T00:54:55",
"url": "https://files.pythonhosted.org/packages/3c/f3/b1a96fa96060469671c2225756d2970c5fb032e3335f1a83d5a8181004a3/ksp_sample-0.0.4-py2.py3-none-any.whl"
}
],
"0.0.5": [
{
"comment_text": "",
"digests": {
"md5": "bf529f8eb8337befffb85d4222a93324",
"sha256": "06be440f6478bf733cb126ef0fd023f9138549c1ae415172cc120e02d0eb6f59"
},
"downloads": -1,
"filename": "ksp_sample-0.0.5-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "bf529f8eb8337befffb85d4222a93324",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, <4",
"size": 7625,
"upload_time": "2019-02-10T03:35:00",
"url": "https://files.pythonhosted.org/packages/d6/55/ac004305ae58bb19667a76c526fc2c4fd49b11824fc0822b3c35cca3adc7/ksp_sample-0.0.5-py2.py3-none-any.whl"
}
],
"0.0.6": [
{
"comment_text": "",
"digests": {
"md5": "4b32deb27053c1d734acdad6715cd1e2",
"sha256": "6aba49c90bb2df626657509bc553e96556695f6a1d572647a674c676cab67071"
},
"downloads": -1,
"filename": "ksp_sample-0.0.6-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "4b32deb27053c1d734acdad6715cd1e2",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, <4",
"size": 7880,
"upload_time": "2019-02-10T15:23:28",
"url": "https://files.pythonhosted.org/packages/50/0a/aa96be05ce830663ebf656f62aeb6bfdebce091c6111f229b81bfdcba723/ksp_sample-0.0.6-py2.py3-none-any.whl"
}
]
},
"urls": [
{
"comment_text": "",
"digests": {
"md5": "4b32deb27053c1d734acdad6715cd1e2",
"sha256": "6aba49c90bb2df626657509bc553e96556695f6a1d572647a674c676cab67071"
},
"downloads": -1,
"filename": "ksp_sample-0.0.6-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "4b32deb27053c1d734acdad6715cd1e2",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, <4",
"size": 7880,
"upload_time": "2019-02-10T15:23:28",
"url": "https://files.pythonhosted.org/packages/50/0a/aa96be05ce830663ebf656f62aeb6bfdebce091c6111f229b81bfdcba723/ksp_sample-0.0.6-py2.py3-none-any.whl"
}
]
}