Python Class defining a daemon process. An implemented class that inherts from this should be runnable as a daemon.
Project description
aicsdaemon
Python Class defining a daemon process. An implemented class that inherts from this should be runnable as a daemon.
Features
- Store values and retain the prior value in memory
- ... some other functionality
Quick Start
from aicsdaemon import Example
a = Example()
a.get_value() # 10
Installation
Stable Release: pip install aicsdaemon
Development Head: pip install git+https://github.com/AllenCellModeling/aicsdaemon.git
Documentation
For full package documentation please visit AllenCellModeling.github.io/aicsdaemon.
Development
See CONTRIBUTING.md for information related to developing the code.
The Four Commands You Need To Know
-
pip install -e .[dev]
This will install your package in editable mode with all the required development dependencies (i.e.
tox
). -
make build
This will run
tox
which will run all your tests in both Python 3.6 and Python 3.7 as well as linting your code. -
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.
-
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 sure you have
git
installed, if you don't, follow these instructions - Make an account on github.com
- Go to make a new repository
- 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
- Once you are in your newly generated cookiecutter Python project directory, run
git init
- After
git
has initialized locally, run the following commands:git remote add origin git@github.com:AllenCellModeling/aicsdaemon.git
git push -u origin master
- Make sure you have
- Register aicsdaemon with Codecov:
- Make an account on codecov.io (Recommended to sign in with GitHub)
- Select
AllenCellModeling
and click:Add new repository
- Copy the token provided, go to your GitHub repository's settings and under the
Secrets
tab, add a secret calledCODECOV_TOKEN
with the token you just copied. Don't worry, no one will see this token because it will be encrypted.
- Generate and add an access token as a secret to the repository for auto documentation generation to work
- Go to your GitHub account's Personal Access Tokens page
- Click:
Generate new token
- Recommendations:
- Name the token: "Auto-Documentation Generation" or similar so you know what it is being used for later
- Select only:
repo:status
,repo_deployment
, andpublic_repo
to limit what this token has access to
- Copy the newly generated token
- Go to your GitHub repository's settings and under the
Secrets
tab, add a secret calledACCESS_TOKEN
with the personal access token you just created. Don't worry, no one will see this password because it will be encrypted.
- Register your project with PyPI:
- Make an account on pypi.org
- Go to your GitHub repository's settings and under the
Secrets
tab, add a secret calledPYPI_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:
stable
, GitHub actions will build and deploy your Python package to PyPI. - Recommendation: Prior to pushing to
stable
it is recommended to install and runbumpversion
as this will, tag a git commit for release and update thesetup.py
version number.
- Add branch protections to
master
andstable
- To protect from just anyone pushing to
master
orstable
(the branches with more tests and deploy configurations) - Go to your GitHub repository's settings and under the
Branches
tab, clickAdd rule
and select the settings you believe best. - Recommendations:
- Require pull request reviews before merging
- Require status checks to pass before merging (Recommended: lint and test)
- To protect from just anyone pushing to
Suggested Git Branch Strategy
master
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 master.stable
is for releases only. When you want to release your project on PyPI, simply make a PR frommaster
tostable
, this template will handle the rest as long as you have added your PyPI information described in the above Optional Steps section.- Your day-to-day work should exist on branches separate from
master
. Even if it is just yourself working on the repository, make a PR from your working branch tomaster
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. - It is recommended to use "Squash and Merge" commits when committing PR's. It makes each set of changes to
master
atomic and as a side effect naturally encourages small well defined PR's. - GitHub's UI is bad for rebasing
master
ontostable
, as it simply adds the commits to the other branch instead of properly rebasing from what I can tell. You should always rebase locally on the CLI until they fix it.
Free software: BSD license
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file aicsdaemon-0.1.0.tar.gz
.
File metadata
- Download URL: aicsdaemon-0.1.0.tar.gz
- Upload date:
- Size: 15.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/45.1.0 requests-toolbelt/0.9.1 tqdm/4.42.1 CPython/3.7.6
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 0d21804d834d60595e7420999e6995b6a6a5bf9b04c000f81d329a7c005078f5 |
|
MD5 | c5762b9e4e5db19741b8a20851dd618d |
|
BLAKE2b-256 | c9677963ce7133c7e56e167457b7133dcc39e3ce79b9f10fdbd2a5daf062f06a |
File details
Details for the file aicsdaemon-0.1.0-py2.py3-none-any.whl
.
File metadata
- Download URL: aicsdaemon-0.1.0-py2.py3-none-any.whl
- Upload date:
- Size: 9.1 kB
- Tags: Python 2, Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/45.1.0 requests-toolbelt/0.9.1 tqdm/4.42.1 CPython/3.7.6
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | a876a7e7c94adff7ddbee5bcac66a69880904f41fece046a81696171e29e0936 |
|
MD5 | a34517b97260eb6c0fb9e35b08e28aea |
|
BLAKE2b-256 | 501e1443082bdbc09db2df6470d09c4acdd48f4911cd33990b411f03fa099765 |