# heliostrome
[![Build Status](https://github.com/stephansmit/heliostrome/workflows/Build%20Main/badge.svg)](https://github.com/stephansmit/heliostrome/actions)
[![Documentation](https://github.com/stephansmit/heliostrome/workflows/Documentation/badge.svg)](https://stephansmit.github.io/heliostrome/)
[![Code Coverage](https://codecov.io/gh/stephansmit/heliostrome/branch/main/graph/badge.svg)](https://codecov.io/gh/stephansmit/heliostrome)
This package contains all the code required for the heliostrome application
---
## Features
- Store values and retain the prior value in memory
- ... some other functionality
## Quick Start
```python
from heliostrome import Example
a = Example()
a.get_value() # 10
```
## Installation
**Stable Release:** `pip install heliostrome`<br>
**Development Head:** `pip install git+https://github.com/stephansmit/heliostrome.git`
## Documentation
For full package documentation please visit [stephansmit.github.io/heliostrome](https://stephansmit.github.io/heliostrome).
## Development
See [CONTRIBUTING.md](CONTRIBUTING.md) for information related to developing the code.
## The Four Commands You Need To Know
1. `pip install -e .[dev]`
This will install your package in editable mode with all the required development
dependencies (i.e. `tox`).
2. `make build`
This will run `tox` which will run all your tests in both Python 3.7
and Python 3.8 as well as linting your code.
3. `make clean`
This will clean up various Python and build generated files so that you can ensure
that you are working in a clean environment.
4. `make docs`
This will generate and launch a web browser to view the most up-to-date
documentation for your Python package.
#### Additional Optional Setup Steps:
- Turn your project into a GitHub repository:
- Make an account on [github.com](https://github.com)
- Go to [make a new repository](https://github.com/new)
- _Recommendations:_
- _It is strongly recommended to make the repository name the same as the Python
package name_
- _A lot of the following optional steps are *free* if the repository is Public,
plus open source is cool_
- After a GitHub repo has been created, run the commands listed under:
"...or push an existing repository from the command line"
- Register your project with Codecov:
- Make an account on [codecov.io](https://codecov.io)(Recommended to sign in with GitHub)
everything else will be handled for you.
- Ensure that you have set GitHub pages to build the `gh-pages` branch by selecting the
`gh-pages` branch in the dropdown in the "GitHub Pages" section of the repository settings.
([Repo Settings](https://github.com/stephansmit/heliostrome/settings))
- Register your project with PyPI:
- Make an account on [pypi.org](https://pypi.org)
- Go to your GitHub repository's settings and under the
[Secrets tab](https://github.com/stephansmit/heliostrome/settings/secrets/actions),
add a secret called `PYPI_TOKEN` with your password for your PyPI account.
Don't worry, no one will see this password because it will be encrypted.
- Next time you push to the branch `main` after using `bump2version`, GitHub
actions will build and deploy your Python package to PyPI.
#### Suggested Git Branch Strategy
1. `main` is for the most up-to-date development, very rarely should you directly
commit to this branch. GitHub Actions will run on every push and on a CRON to this
branch but still recommended to commit to your development branches and make pull
requests to main. If you push a tagged commit with bumpversion, this will also release to PyPI.
2. Your day-to-day work should exist on branches separate from `main`. Even if it is
just yourself working on the repository, make a PR from your working branch to `main`
so that you can ensure your commits don't break the development head. GitHub Actions
will run on every push to any branch or any pull request from any branch to any other
branch.
3. It is recommended to use "Squash and Merge" commits when committing PR's. It makes
each set of changes to `main` atomic and as a side effect naturally encourages small
well defined PR's.
Raw data
{
"_id": null,
"home_page": "https://github.com/stephansmit/heliostrome",
"name": "heliostrome",
"maintainer": "",
"docs_url": null,
"requires_python": ">=3.7",
"maintainer_email": "",
"keywords": "heliostrome",
"author": "Stephan Smit",
"author_email": "stephansmit@hotmail.com",
"download_url": "https://files.pythonhosted.org/packages/15/e0/af089b5ff05556327790d23163b9d45de220c24383d5bf56336b7ef7527e/heliostrome-0.0.2.tar.gz",
"platform": null,
"description": "# heliostrome\n\n[![Build Status](https://github.com/stephansmit/heliostrome/workflows/Build%20Main/badge.svg)](https://github.com/stephansmit/heliostrome/actions)\n[![Documentation](https://github.com/stephansmit/heliostrome/workflows/Documentation/badge.svg)](https://stephansmit.github.io/heliostrome/)\n[![Code Coverage](https://codecov.io/gh/stephansmit/heliostrome/branch/main/graph/badge.svg)](https://codecov.io/gh/stephansmit/heliostrome)\n\nThis package contains all the code required for the heliostrome application\n\n---\n\n## Features\n\n- Store values and retain the prior value in memory\n- ... some other functionality\n\n## Quick Start\n\n```python\nfrom heliostrome import Example\n\na = Example()\na.get_value() # 10\n```\n\n## Installation\n\n**Stable Release:** `pip install heliostrome`<br>\n**Development Head:** `pip install git+https://github.com/stephansmit/heliostrome.git`\n\n## Documentation\n\nFor full package documentation please visit [stephansmit.github.io/heliostrome](https://stephansmit.github.io/heliostrome).\n\n## Development\n\nSee [CONTRIBUTING.md](CONTRIBUTING.md) for information related to developing the code.\n\n## The Four Commands You Need To Know\n\n1. `pip install -e .[dev]`\n\n This will install your package in editable mode with all the required development\n dependencies (i.e. `tox`).\n\n2. `make build`\n\n This will run `tox` which will run all your tests in both Python 3.7\n and Python 3.8 as well as linting your code.\n\n3. `make clean`\n\n This will clean up various Python and build generated files so that you can ensure\n that you are working in a clean environment.\n\n4. `make docs`\n\n This will generate and launch a web browser to view the most up-to-date\n documentation for your Python package.\n\n#### Additional Optional Setup Steps:\n\n- Turn your project into a GitHub repository:\n - Make an account on [github.com](https://github.com)\n - Go to [make a new repository](https://github.com/new)\n - _Recommendations:_\n - _It is strongly recommended to make the repository name the same as the Python\n package name_\n - _A lot of the following optional steps are *free* if the repository is Public,\n plus open source is cool_\n - After a GitHub repo has been created, run the commands listed under:\n \"...or push an existing repository from the command line\"\n- Register your project with Codecov:\n - Make an account on [codecov.io](https://codecov.io)(Recommended to sign in with GitHub)\n everything else will be handled for you.\n- Ensure that you have set GitHub pages to build the `gh-pages` branch by selecting the\n `gh-pages` branch in the dropdown in the \"GitHub Pages\" section of the repository settings.\n ([Repo Settings](https://github.com/stephansmit/heliostrome/settings))\n- Register your project with PyPI:\n - Make an account on [pypi.org](https://pypi.org)\n - Go to your GitHub repository's settings and under the\n [Secrets tab](https://github.com/stephansmit/heliostrome/settings/secrets/actions),\n add a secret called `PYPI_TOKEN` with your password for your PyPI account.\n Don't worry, no one will see this password because it will be encrypted.\n - Next time you push to the branch `main` after using `bump2version`, GitHub\n actions will build and deploy your Python package to PyPI.\n\n#### Suggested Git Branch Strategy\n\n1. `main` is for the most up-to-date development, very rarely should you directly\n commit to this branch. GitHub Actions will run on every push and on a CRON to this\n branch but still recommended to commit to your development branches and make pull\n requests to main. If you push a tagged commit with bumpversion, this will also release to PyPI.\n2. Your day-to-day work should exist on branches separate from `main`. Even if it is\n just yourself working on the repository, make a PR from your working branch to `main`\n so that you can ensure your commits don't break the development head. GitHub Actions\n will run on every push to any branch or any pull request from any branch to any other\n branch.\n3. It is recommended to use \"Squash and Merge\" commits when committing PR's. It makes\n each set of changes to `main` atomic and as a side effect naturally encourages small\n well defined PR's.\n\n\n\n\n",
"bugtrack_url": null,
"license": "",
"summary": "This package contains all the code required for the heliostrome application",
"version": "0.0.2",
"project_urls": {
"Homepage": "https://github.com/stephansmit/heliostrome"
},
"split_keywords": [
"heliostrome"
],
"urls": [
{
"comment_text": "",
"digests": {
"blake2b_256": "7f812320ff3f0a58a054e979c3bdd3022f6060789554bd2e68766b5a954729d5",
"md5": "ebb23272f22e56c0338fea69b3ac7e39",
"sha256": "3ae0039ea436cf63bf4aafd2eb30577abba0ece09b95050d60d1c1effd2408a9"
},
"downloads": -1,
"filename": "heliostrome-0.0.2-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "ebb23272f22e56c0338fea69b3ac7e39",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": ">=3.7",
"size": 7168,
"upload_time": "2023-07-09T15:44:12",
"upload_time_iso_8601": "2023-07-09T15:44:12.573797Z",
"url": "https://files.pythonhosted.org/packages/7f/81/2320ff3f0a58a054e979c3bdd3022f6060789554bd2e68766b5a954729d5/heliostrome-0.0.2-py2.py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "15e0af089b5ff05556327790d23163b9d45de220c24383d5bf56336b7ef7527e",
"md5": "e1027c89d2cb7479885659be9ea37135",
"sha256": "b5d51387318c65be7cb61c3275a8fb9aa4999213c334a4abf42fea4c0da0c543"
},
"downloads": -1,
"filename": "heliostrome-0.0.2.tar.gz",
"has_sig": false,
"md5_digest": "e1027c89d2cb7479885659be9ea37135",
"packagetype": "sdist",
"python_version": "source",
"requires_python": ">=3.7",
"size": 12622,
"upload_time": "2023-07-09T15:44:14",
"upload_time_iso_8601": "2023-07-09T15:44:14.077301Z",
"url": "https://files.pythonhosted.org/packages/15/e0/af089b5ff05556327790d23163b9d45de220c24383d5bf56336b7ef7527e/heliostrome-0.0.2.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2023-07-09 15:44:14",
"github": true,
"gitlab": false,
"bitbucket": false,
"codeberg": false,
"github_user": "stephansmit",
"github_project": "heliostrome",
"travis_ci": false,
"coveralls": false,
"github_actions": true,
"tox": true,
"lcname": "heliostrome"
}