معرفی شرکت ها


aicsdaemon-0.1.0


Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر

توضیحات

Python Class defining a daemon process. An implemented class that inherts from this should be runnable as a daemon.
ویژگی مقدار
سیستم عامل -
نام فایل aicsdaemon-0.1.0
نام aicsdaemon
نسخه کتابخانه 0.1.0
نگهدارنده []
ایمیل نگهدارنده []
نویسنده Jamie Sherman
ایمیل نویسنده jamies@alleninstitute.org
آدرس صفحه اصلی https://github.com/AllenCellModeling/aicsdaemon
آدرس اینترنتی https://pypi.org/project/aicsdaemon/
مجوز BSD license
# aicsdaemon [![Build Status](https://github.com/AllenCellModeling/aicsdaemon/workflows/Build%20Master/badge.svg)](https://github.com/AllenCellModeling/aicsdaemon/actions) [![Documentation](https://github.com/AllenCellModeling/aicsdaemon/workflows/Documentation/badge.svg)](https://AllenCellModeling.github.io/aicsdaemon) [![Code Coverage](https://codecov.io/gh/AllenCellModeling/aicsdaemon/branch/master/graph/badge.svg)](https://codecov.io/gh/AllenCellModeling/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 ```python from aicsdaemon import Example a = Example() a.get_value() # 10 ``` ## Installation **Stable Release:** `pip install aicsdaemon`<br> **Development Head:** `pip install git+https://github.com/AllenCellModeling/aicsdaemon.git` ## Documentation For full package documentation please visit [AllenCellModeling.github.io/aicsdaemon](https://AllenCellModeling.github.io/aicsdaemon). ## 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.6 and Python 3.7 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 sure you have `git` installed, if you don't, [follow these instructions](https://git-scm.com/book/en/v2/Getting-Started-Installing-Git) * 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_ * 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` * Register aicsdaemon with Codecov: * Make an account on [codecov.io](https://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](https://github.com/AllenCellModeling/aicsdaemon/settings/secrets), add a secret called `CODECOV_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](https://github.com/settings/tokens) * 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`, and `public_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](https://github.com/AllenCellModeling/aicsdaemon/settings/secrets), add a secret called `ACCESS_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](https://pypi.org) * Go to your [GitHub repository's settings and under the `Secrets` tab](https://github.com/AllenCellModeling/aicsdaemon/settings/secrets), 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: `stable`, GitHub actions will build and deploy your Python package to PyPI. * _Recommendation: Prior to pushing to `stable` it is recommended to install and run `bumpversion` as this will, tag a git commit for release and update the `setup.py` version number._ * Add branch protections to `master` and `stable` * To protect from just anyone pushing to `master` or `stable` (the branches with more tests and deploy configurations) * Go to your [GitHub repository's settings and under the `Branches` tab](https://github.com/AllenCellModeling/aicsdaemon/settings/branches), click `Add 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)_ #### Suggested Git Branch Strategy 1. `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. 2. `stable` is for releases only. When you want to release your project on PyPI, simply make a PR from `master` to `stable`, this template will handle the rest as long as you have added your PyPI information described in the above **Optional Steps** section. 3. 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 to `master` 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. 4. 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. 5. GitHub's UI is bad for rebasing `master` onto `stable`, 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***


نیازمندی

مقدار نام
- codecov
- flake8
- black
- pytest
- pytest-cov
- pytest-raises
- pytest-runner
>=0.5.3 bumpversion
>=5.0a4 coverage
>=3.7.7 flake8
>=7.5.0 ipython
>=0.2.1 m2r
>=4.3.0 pytest
==2.6.1 pytest-cov
>=0.10 pytest-raises
>=4.4 pytest-runner
>=2.0.0b1 Sphinx
>=0.1.2 sphinx-rtd-theme
>=3.5.2 tox
>=1.13.0 twine
>=0.33.1 wheel
- altair
- jupyterlab
- matplotlib
>=0.5.3 bumpversion
>=5.0a4 coverage
>=3.7.7 flake8
>=7.5.0 ipython
>=0.2.1 m2r
>=4.3.0 pytest
==2.6.1 pytest-cov
>=0.10 pytest-raises
>=4.4 pytest-runner
>=2.0.0b1 Sphinx
>=0.1.2 sphinx-rtd-theme
>=3.5.2 tox
>=1.13.0 twine
>=0.33.1 wheel
- altair
- jupyterlab
- matplotlib
- pytest-runner
- codecov
- flake8
- black
- pytest
- pytest-cov
- pytest-raises


زبان مورد نیاز

مقدار نام
>=3.6 Python


نحوه نصب


نصب پکیج whl aicsdaemon-0.1.0:

    pip install aicsdaemon-0.1.0.whl


نصب پکیج tar.gz aicsdaemon-0.1.0:

    pip install aicsdaemon-0.1.0.tar.gz