Skip to content

Commit

Permalink
initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
stolpeo committed Aug 9, 2024
0 parents commit d453ca2
Show file tree
Hide file tree
Showing 15 changed files with 2,995 additions and 0 deletions.
21 changes: 21 additions & 0 deletions LICENSE
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
MIT License

Copyright (c) 2024 Berlin Institute of Health, Manuel Holtgrewe

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
54 changes: 54 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,54 @@
.PHONY: help
help:
@echo "Usage: make [target]"
@echo "Targets:"
@echo " format Format the code"
@echo " lint Lint the code"
@echo " build Build the package"
@echo " install-e Install the package in editable mode"
@echo " help Show this help message"
@echo ""
@echo " format-isort Format the code with isort"
@echo " format-black Format the code with black"
@echo " lint-isort Lint the code with isort"
@echo " lint-black Lint the code with black"
@echo " lint-pyright Lint the code with pyright"
@echo " lint-flake8 the code with flake8"

.PHONY: format
format: format-isort format-black

.PHONY: format-isort
format-isort:
isort --force-sort-within-sections --profile=black .

.PHONY: format-black
format-black:
black -l 100 .

.PHONY: lint
lint: lint-isort lint-black lint-pyright lint-flake8

.PHONY: lint-isort
lint-isort:
isort --force-sort-within-sections --profile=black --check .

.PHONY: lint-black
lint-black:
black -l 100 --check .

.PHONY: lint-pyright
lint-pyright:
pyright

.PHONY: lint-flake8
lint-flake8:
flake8 .

.PHONY: build
build:
python -m pip install --upgrade build

.PHONY: install-e
install-e:
python -m pip install --upgrade -e .
24 changes: 24 additions & 0 deletions Pipfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
[[source]]
url = "https://pypi.org/simple"
verify_ssl = true
name = "pypi"

[packages]
ldap3 = "~=2.9"
pydantic = "~=2.6"
typer = "*"
httpx = "*"
mechanize = "*"
rich = "*"
pydantic-settings = "*"
xattr = "*"
pyhumps = "*"

[dev-packages]
pyright = "*"
black = "*"
hatchling = "*"
ipdb = "*"

[requires]
python_version = "3.10"
Loading

0 comments on commit d453ca2

Please sign in to comment.