-
Notifications
You must be signed in to change notification settings - Fork 155
/
pyproject.toml
49 lines (41 loc) · 1.2 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
[tool.poetry]
name = "R2T2"
version = "0.3.1"
description = "Research references tracking tool"
repository = "https://github.com/ImperialCollegeLondon/R2T2"
homepage = "https://imperialcollegelondon.github.io/R2T2/"
authors = ["Research Computing Service, Imperial College London <[email protected]>"]
license = "MIT"
classifiers = [
"Development Status :: 3 - Alpha",
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
"License :: OSI Approved :: MIT License",
"Topic :: Utilities",
]
[tool.poetry.dependencies]
python = "^3.6"
wrapt = "^1.12.0"
[tool.poetry.dev-dependencies]
pytest = "^6.0.1"
pytest-flake8 = "^1.0.6"
pytest-mypy = "^0.7.0"
pytest-cov = "^2.10.1"
bump2version = "^1.0.0"
coverage = {version = "^5.2.1", extras = ["toml"]}
codecov = "^2.1.9"
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"
[tool.pytest.ini_options]
addopts = "--flake8 --mypy --cov=r2t2 --cov-report=html:htmlcov"
[tool.coverage.run]
omit = ["r2t2/__init__.py"]
[tool.black]
exclude = '\.venv/|\.eggs/'
[tool.isort]
multi_line_output = 3
include_trailing_comma = true
# NB. See setup.cfg for configuration for the following:
# - bumpversion
# - flake8