forked from ericflo/pynzb
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
46 lines (41 loc) · 1.29 KB
/
Copy pathpyproject.toml
File metadata and controls
46 lines (41 loc) · 1.29 KB
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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "pynzb"
version = "0.2.0"
authors = [
{ name="Eric Florenzano", email="floguy@gmail.com" },
]
maintainers = [
{ name="Meethune Bhowmick", email="meethune@gmail.com" },
]
description = "pynzb is a unified API for parsing NZB files, with several concrete implementations included"
readme = "README.md"
requires-python = ">=3.8"
license = { text = "BSD-3-Clause" }
keywords = ["nzb", "parser", "xml", "usenet"]
classifiers = [
"Programming Language :: Python :: 3",
"Topic :: Software Development :: Libraries :: Python Modules",
"License :: OSI Approved :: BSD License",
]
[project.optional-dependencies]
lxml = ["lxml"]
dev = ["flake8", "black", "isort", "pytest", "pytest-cov", "bandit[toml]", "mypy"]
[project.urls]
"Homepage" = "https://github.com/meethune/pynzb/tree/python3"
"Repository" = "https://github.com/meethune/pynzb"
"Bug Reports" = "https://github.com/meethune/pynzb/issues"
"Original Repository" = "https://github.com/ericflo/pynzb"
[tool.coverage.run]
source = ["pynzb"]
omit = ["*/tests.py", "*/test_*.py"]
[tool.coverage.report]
exclude_lines = [
"pragma: no cover",
"def __repr__",
"raise AssertionError",
"raise NotImplementedError",
]
show_missing = true