-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
59 lines (50 loc) · 1.32 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
56
57
58
59
[build-system]
requires = ["setuptools", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[project]
name = "secretsanta"
description = "Secret Santa randomizer"
readme = "README.md"
authors = [
{ name = "Mirai Solutions", email = "[email protected]" },
]
urls = { Homepage = "https://github.com/miraisolutions/secretsanta" }
classifiers = [
'Development Status :: 4 - Beta',
'License :: OSI Approved :: MIT License',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python :: 3 :: Only',
'Topic :: Games/Entertainment',
]
license = { text = "MIT" }
version = "0.1.dev1"
keywords = ["secret", "santa"]
[project.scripts]
santa = "secretsanta.cli.cli:santa"
[tool.setuptools.packages.find]
include = ["secretsanta"]
[tool.setuptools_scm]
[tool.coverage.html]
# Directory where coverage report should be written.
directory = "coverage"
[tool.coverage.report]
# Show which lines were missed in summary report.
show_missing = true
[tool.coverage.run]
# Measure branch coverage in addition to statement coverage.
branch = true
# The source directory to measure. This is already in 'tox.ini'.
#source = secretsanta
[tool.pytest.ini_options]
norecursedirs = [
"bin",
"include",
"lib",
"lib64",
"share",
".tox",
".git",
"docs"
]
[tool.mypy]
exclude = ["venv"]