-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
48 lines (41 loc) · 1012 Bytes
/
Copy pathpyproject.toml
File metadata and controls
48 lines (41 loc) · 1012 Bytes
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
[build-system]
requires = ["hatchling >= 1.26", "hatch-vcs >= 0.3.0"]
build-backend = "hatchling.build"
[project]
name = "libelifoot"
description = "Library to handle Elifoot equipas"
authors = [{ name = "André L. C. Moreira", email = "andrelcmoreira@proton.me" }]
license = "LGPL-3.0-only"
license-files = ["LICEN[CS]E.*"]
readme = { file = "README.md", content-type = "text/markdown" }
dynamic = ["version"]
requires-python = ">=3.11"
dependencies = [
"requests",
"Unidecode",
"BeautifulSoup4"
]
[project.optional-dependencies]
dev = [
"pytest",
"pytest-cov",
"pylint"
]
[tool.hatch.build]
include = [
"libelifoot/*",
]
[tool.hatch.version.raw-options]
version_scheme = "python-simplified-semver"
git_describe_command = ["git", "describe", "--tags"]
[tool.hatch.version]
source = "vcs"
[project.urls]
Repository = "https://github.com/andrelcmoreira/libelifoot.git"
[tool.pytest.ini_options]
minversion = "6.0"
addopts = "-ra -q"
pythonpath = "."
testpaths = [
"tests"
]