-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
34 lines (28 loc) · 1.02 KB
/
pyproject.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
[tool.poetry]
name = "compare_workdir"
version = "2.0"
description = "Compare MESA inlists and list files without worrying about nesting, comments, and order"
authors = ["Mathieu Renzo <[email protected]>"]
homepage = "https://github.com/mathren/compare_workdir_MESA"
repository = "https://github.com/mathren/compare_workdir_MESA"
[tool.poetry.scripts]
compare_inlists = 'compare_workdir:compare_inlists'
compare_all_workdir_inlists = 'compare_workdir:compare_all_workdir_inlists'
merge_colum_lists = 'compare_workdir:merge_column_lists'
[tool.poetry.dependencies]
python = "^3.7"
click = "^8.0.3"
termcolor = "^1.1.0"
[tool.poetry.dev-dependencies]
black = "^21.10b0"
pylint = "^2.11.1"
python-lsp-server = "^1.2.4"
[tool.black]
line-length = 120
#[tool.pylint.'MESSAGES CONTROL']
#disable = ["invalid-name", "bad-continuation", "undefined-variable"]
##disable = "undefined-variable,bad-continuation,missing-module-docstring"
#good-names = "f"
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"