-
Notifications
You must be signed in to change notification settings - Fork 6
/
pyproject.toml
55 lines (47 loc) · 1.62 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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
[tool.poetry]
name = "taiga-stats"
version = "1.6.0"
description = "Generate statistics from Taiga and produce burnup diagrams, CFDs, dependency graphs and more."
authors = ["Erik Westrup <[email protected]>"]
license = "BSD-3-Clause"
readme = "README.md"
homepage = "https://github.com/erikw/taiga-stats"
keywords = ["taiga", "generator", "stats", "cfd", "dependency graph"]
classifiers = [
"Topic :: Utilities",
"Topic :: Software Development"
]
include = ["CHANGELOG.md", "LICENSE", "README.md"]
[tool.poetry.dependencies]
matplotlib = "^2.1.0"
numpy = "^1.13.3"
python = "^3.7, < 3.10.0" # TODO remove restriction "<3.10.0" when numpy works. See README.md
python-taiga = "^1.0.0"
single-source = ">=0.2,<0.4"
[tool.poetry.dev-dependencies]
autoflake = "^1.4"
autoimport = "^0.11"
black = "^22.1"
pylint = "^2.13.9"
ipdb = "^0.13"
isort = "^5.9"
mkdocs = "1.3.0" # Keep this in sync with docs/requirements.txt used by .readthedocs.yaml
pudb = "^2021.2.2"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.scripts]
# By defining this, we can run
# $ poetry run taiga-stats
# instead of the longer
# $ poetry run python -m taiga_stats
# This short name will also be the name of the script being installed to the system when installing the wheel from pip.
# NOTE python modules should use underscores, python packages not (PEP8)...
taiga-stats = 'taiga_stats.__main__:main'
[tool.isort]
line_length = 160
[tool.black]
line_length = 160
[tool.pylint.'MESSAGES CONTROL']
max-line-length = 160
disable = "C0103, C0114, C0116, C0200, C0209, C0413, R0903, R0912, R0914, R0915, R1710, W1308"