-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
49 lines (42 loc) · 1.23 KB
/
pyproject.toml
File metadata and controls
49 lines (42 loc) · 1.23 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
47
48
49
[project]
name = "PyIpernity"
description = "Library to access the Ipernity API"
readme = "README.rst"
authors = [
{ name = "rcw-2", email = "mail@rcw-2.de" }
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Topic :: Multimedia :: Graphics",
"Topic :: Software Development :: Libraries :: Python Modules"
]
keywords = ["ipernity"]
dependencies = ["requests"]
requires-python = ">=3.8"
dynamic = ["version"]
[project.urls]
Documentation = "https://pyipernity.readthedocs.io/"
Homepage = "https://github.com/rcw-2/python-ipernity"
[project.optional-dependencies]
docs = ["sphinx", "tomli; python_version < '3.11'"]
test = ['PyYAML', 'pytest', 'pytest-cov']
[build-system]
requires = ["setuptools", "setuptools_scm>=6.4"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
packages = ["ipernity"]
[tool.setuptools_scm]
write_to = "ipernity/_version.py"
version_scheme = "guess-next-dev"
local_scheme = "dirty-tag"
[tool.coverage.run]
source = ["ipernity"]
branch = true
relative_files = true
parallel = true
[tool.pytest.ini_options]
pythonpath = "."
addopts = "--cov --cov-report html --cov-report xml"