-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add conda to project and add a setting to allow to set billable tag b…
…ased on project property. And couple of renamings.
- Loading branch information
Showing
5 changed files
with
58 additions
and
25 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
CONDA_ENV=clockify-automation | ||
|
||
conda-create: | ||
conda env create -f conda.yml --name $(CONDA_ENV) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,8 +5,7 @@ Credits to Markus Proeller, [email protected]. | |
|
||
## Setup | ||
|
||
* Create virtual env: `python -m venv venv` and activate it: `. ./venv/bin/activate `. | ||
* Install requirements: `pip install -r requirements.txt`. | ||
* Create virtual env in conda, use `make conda-create` then activate the environment via `conda activate clockify-automation` | ||
* Set proper values in `config.json`, use `config_example.json` as a base. | ||
* Run it: `python main.py` | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
name: txmatching | ||
channels: | ||
- conda-forge | ||
dependencies: | ||
- autopep8=2.0.0 | ||
- pip=22.3.1 | ||
- python=3.10.5 | ||
- pip: | ||
- arrow==0.17.0 | ||
- certifi==2020.12.5 | ||
- chardet==4.0.0 | ||
- click==7.1.2 | ||
- idna==2.10 | ||
- python-dateutil==2.8.1 | ||
- pytz==2020.5 | ||
- requests==2.25.1 | ||
- six==1.15.0 | ||
- slumber==0.7.1 | ||
- TogglPy==0.1.1 | ||
- urllib3==1.26.5 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters