forked from erikw/taiga-stats
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
51 lines (44 loc) · 1.53 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
[tool.poetry]
name = "taiga-stats"
version = "1.4.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"
[tool.poetry.dev-dependencies]
autoflake = "^1.4"
autoimport = "^0.11"
black = "^22.1"
flake8 = "^4.0" # TODO replace with flakehell to be able to move .flake8 to this config file. Blocked by https://github.com/flakehell/flakehell/issues/18
ipdb = "^0.13"
isort = "^5.9"
mkdocs = "^1.2.3"
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