forked from kurtmckee/dotbot-firefox
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
54 lines (46 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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
[tool.poetry]
name = "dotbot-firefox"
version = "1.0.1"
description = "Configure your Firefox profile(s) using dotbot"
authors = ["Kurt McKee <contactme@kurtmckee.org>"]
license = "MIT"
readme = "README.rst"
repository = "https://github.com/kurtmckee/dotbot-firefox"
keywords = ["dotbot", "dotbot-plugin", "firefox", "dotfiles"]
[tool.poetry.dependencies]
python = "^3.8"
dotbot = ">=1.19.0"
[tool.poetry.group.dev.dependencies]
tox = ">=4.4.4"
scriv = {extras = ["toml"], version = ">=1.2.0"}
[build-system]
requires = ["poetry-core>=1.5.0"]
build-backend = "poetry.core.masonry.api"
[tool.coverage.run]
branch = true
parallel = true
source = [
"dotbot_firefox",
"tests",
]
[tool.coverage.paths]
source = [
"src",
"*/site-packages",
]
[tool.coverage.report]
fail_under = 100
[[tool.mypy.overrides]]
module = [
"dotbot.*",
"pytest",
]
ignore_missing_imports = true
[tool.scriv]
version = "literal: pyproject.toml: tool.poetry.version"
categories = [
"Added",
"Removed",
"Changed",
"Fixed",
]