mirror of
https://github.com/LibreTranslate/LibreTranslate.git
synced 2024-11-25 01:11:00 +00:00
update contributing to provide instructions to run script using hatch
This commit is contained in:
parent
19fb149112
commit
0e404b5ee3
2 changed files with 61 additions and 42 deletions
|
@ -20,17 +20,57 @@ sudo dnf install cmake
|
||||||
|
|
||||||
## Getting Started
|
## Getting Started
|
||||||
|
|
||||||
|
Install `hatch` to manage the projects dependencies and run dev scripts:
|
||||||
|
|
||||||
|
```bash
|
||||||
|
pipx install hatch
|
||||||
|
```
|
||||||
|
|
||||||
|
Clone the repository:
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
git clone https://github.com/LibreTranslate/LibreTranslate.git
|
git clone https://github.com/LibreTranslate/LibreTranslate.git
|
||||||
cd LibreTranslate
|
cd LibreTranslate
|
||||||
pip install -e .
|
```
|
||||||
libretranslate [args]
|
|
||||||
|
|
||||||
|
Run in development:
|
||||||
|
|
||||||
|
```bash
|
||||||
|
hatch run dev
|
||||||
|
```
|
||||||
|
|
||||||
|
Then open a web browser to <http://localhost:5000>
|
||||||
|
|
||||||
|
You can also start a new shell in a virtual environment with libretranslate installed:
|
||||||
|
|
||||||
|
```bash
|
||||||
|
hatch shell
|
||||||
|
libretranslate [args]
|
||||||
# Or
|
# Or
|
||||||
python main.py [args]
|
python main.py [args]
|
||||||
```
|
```
|
||||||
|
|
||||||
Then open a web browser to <http://localhost:5000>
|
> You can still use `pip install -e ".[test]"` directly if you don't want to use hatch.
|
||||||
|
|
||||||
|
## Run the tests
|
||||||
|
|
||||||
|
Run the test suite and linting checks:
|
||||||
|
|
||||||
|
```bash
|
||||||
|
hatch run test
|
||||||
|
```
|
||||||
|
|
||||||
|
To display all `print()` when debugging:
|
||||||
|
|
||||||
|
```bash
|
||||||
|
hatch run test -s
|
||||||
|
```
|
||||||
|
|
||||||
|
You can also run the tests on multiple python versions:
|
||||||
|
|
||||||
|
```bash
|
||||||
|
hatch run all:test
|
||||||
|
```
|
||||||
|
|
||||||
## Run with Docker
|
## Run with Docker
|
||||||
|
|
||||||
|
|
|
@ -23,7 +23,7 @@ keywords = [
|
||||||
]
|
]
|
||||||
classifiers = [
|
classifiers = [
|
||||||
"Operating System :: OS Independent",
|
"Operating System :: OS Independent",
|
||||||
"License :: OSI Approved :: GNU Affero General Public License v3 ",
|
"License :: OSI Approved :: GNU Affero General Public License v3",
|
||||||
"Programming Language :: Python :: 3",
|
"Programming Language :: Python :: 3",
|
||||||
"Programming Language :: Python :: 3.8",
|
"Programming Language :: Python :: 3.8",
|
||||||
"Programming Language :: Python :: 3.9",
|
"Programming Language :: Python :: 3.9",
|
||||||
|
@ -33,7 +33,6 @@ dynamic = ["version"]
|
||||||
|
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"argostranslate ==1.8.0",
|
"argostranslate ==1.8.0",
|
||||||
# "argos-translate-files",
|
|
||||||
"Flask ==2.2.2",
|
"Flask ==2.2.2",
|
||||||
"flask-swagger ==0.2.14",
|
"flask-swagger ==0.2.14",
|
||||||
"flask-swagger-ui ==4.11.1",
|
"flask-swagger-ui ==4.11.1",
|
||||||
|
@ -66,9 +65,8 @@ test = [
|
||||||
"pytest >=7.2.0",
|
"pytest >=7.2.0",
|
||||||
"pytest-cov",
|
"pytest-cov",
|
||||||
"flake8",
|
"flake8",
|
||||||
# "pytest-runner",
|
|
||||||
# "mypy >=1.4.1",
|
|
||||||
"types-requests",
|
"types-requests",
|
||||||
|
# "mypy >=1.4.1",
|
||||||
]
|
]
|
||||||
|
|
||||||
|
|
||||||
|
@ -91,11 +89,10 @@ dev = "python main.py {args}"
|
||||||
lint = [
|
lint = [
|
||||||
"flake8 . --count --exit-zero --select=E9,F63,F7,F82 --show-source --statistics",
|
"flake8 . --count --exit-zero --select=E9,F63,F7,F82 --show-source --statistics",
|
||||||
"flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics",
|
"flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics",
|
||||||
# "ruff --fix",
|
# "ruff libretranslate scripts --fix",
|
||||||
]
|
]
|
||||||
fmt = [
|
fmt = [
|
||||||
"ruff libretranslate scripts --fix",
|
"ruff libretranslate scripts --fix",
|
||||||
# "mypy",
|
|
||||||
]
|
]
|
||||||
test = [
|
test = [
|
||||||
"pytest {args}",
|
"pytest {args}",
|
||||||
|
@ -114,7 +111,7 @@ python = ["3.8", "3.9", "3.10", "3.11"]
|
||||||
# TOOLS
|
# TOOLS
|
||||||
[tool.hatch.version]
|
[tool.hatch.version]
|
||||||
path = "VERSION"
|
path = "VERSION"
|
||||||
pattern = "^([0-9]*.[0-9]*.[0-9]*)$"
|
pattern = "^(?P<version>[0-9]*.[0-9]*.[0-9]*)$"
|
||||||
|
|
||||||
|
|
||||||
[tool.pytest.ini_options]
|
[tool.pytest.ini_options]
|
||||||
|
@ -132,32 +129,32 @@ src = ["libretranslate", "scripts"]
|
||||||
target-version = "py38"
|
target-version = "py38"
|
||||||
line-length = 136
|
line-length = 136
|
||||||
select = [
|
select = [
|
||||||
|
"I", # isort
|
||||||
|
"N", # pep8-naming
|
||||||
|
"S", # bandit
|
||||||
"A", # flake8-builtins
|
"A", # flake8-builtins
|
||||||
|
"YTT", # flake8-2020
|
||||||
"B", # flake8-bugbear
|
"B", # flake8-bugbear
|
||||||
"C", # flake8-comprehensions
|
"C", # flake8-comprehensions
|
||||||
"E", # pycodestyle errors
|
|
||||||
"F", # pyflakes
|
|
||||||
# "FBT", # flake8-boolean-trap
|
|
||||||
"I", # isort
|
|
||||||
"ICN", # flake8-import-conventions
|
"ICN", # flake8-import-conventions
|
||||||
"N", # pep8-naming
|
"SIM", # flake8-simplify
|
||||||
|
"TID", # flake8-tidy-imports
|
||||||
|
"Q", # flake8-quotes
|
||||||
|
"FBT", # flake8-boolean-trap
|
||||||
|
"F", # pyflakes
|
||||||
|
"UP", # pyupgrade
|
||||||
|
"E", # pycodestyle errors
|
||||||
|
"W", # pycodestyle warnings
|
||||||
"PLC", # pylint convention
|
"PLC", # pylint convention
|
||||||
"PLE", # pylint error
|
"PLE", # pylint error
|
||||||
# "PLR", # pylint refactor Magic value used in comparison, consider replacing 400 with a constant variable
|
"PLR", # pylint refactor
|
||||||
"PLW", # pylint warning
|
"PLW", # pylint warning
|
||||||
"Q", # flake8-quotes
|
|
||||||
"RUF", # ruff specific
|
"RUF", # ruff specific
|
||||||
"S", # bandit
|
|
||||||
"SIM", # flake8-simplify
|
|
||||||
"T",
|
"T",
|
||||||
"TID", # flake8-tidy-imports
|
|
||||||
"UP", # pyupgrade
|
|
||||||
"W", # pycodestyle warnings
|
|
||||||
"YTT", # flake8-2020
|
|
||||||
]
|
]
|
||||||
|
|
||||||
ignore = [
|
ignore = [
|
||||||
# "E741",
|
# "E741", # From original flake8 ignore
|
||||||
# "B008", # do not perform function calls in argument defaults (required for FastAPI afaik)
|
# "B008", # do not perform function calls in argument defaults (required for FastAPI afaik)
|
||||||
"E501", # line too long
|
"E501", # line too long
|
||||||
# "C901", # too complex
|
# "C901", # too complex
|
||||||
|
@ -172,21 +169,3 @@ ignore = [
|
||||||
|
|
||||||
[tool.ruff.mccabe]
|
[tool.ruff.mccabe]
|
||||||
max-complexity = 12
|
max-complexity = 12
|
||||||
|
|
||||||
# [flake8] ignore = E741
|
|
||||||
|
|
||||||
|
|
||||||
# [tool.mypy]
|
|
||||||
# files = ["src/"]
|
|
||||||
# strict = true
|
|
||||||
# implicit_reexport = true
|
|
||||||
# follow_imports = "normal"
|
|
||||||
# ignore_missing_imports = true
|
|
||||||
# pretty = true
|
|
||||||
# show_column_numbers = true
|
|
||||||
# warn_no_return = true
|
|
||||||
# warn_unused_ignores = true
|
|
||||||
# warn_redundant_casts = true
|
|
||||||
# disallow_untyped_defs = true
|
|
||||||
# disallow_any_generics = true
|
|
||||||
# disallow_untyped_calls = false # needed due to _eval() not being typed in rdflib
|
|
||||||
|
|
Loading…
Reference in a new issue