aboutsummaryrefslogtreecommitdiff
blob: 4e951399733d4e737b799c51163238b16e7dad48 (plain)
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
[build-system]
requires = ["flit_core >=3.8,<4"]
build-backend = "flit_core.buildapi"

[project]
name = "snakeoil"
description = "misc common functionality and useful optimizations"
readme = "README.rst"
requires-python = "~=3.10"
# alphabetical by surname
authors = [
	{name = "Tim Harder", email = "radhermit@gmail.com"},
	{name = "Brian Harring", email = "ferringb@gmail.com"},
	{name = "Arthur Zamarin", email = "arthurzam@gentoo.org"},
]
maintainers = [
    {name = "Arthur Zamarin", email = "arthurzam@gentoo.org"},
]
classifiers = [
    "Intended Audience :: Developers",
    "License :: OSI Approved :: BSD License",
    "Programming Language :: Python :: 3.10",
    "Programming Language :: Python :: 3.11",
    "Programming Language :: Python :: 3.12",
]
dynamic = ["version"]

dependencies = [
    "lazy-object-proxy",
]

[project.optional-dependencies]
test = [
    "pytest >=6.0",
    "pytest-cov",
]
doc = ["sphinx"]

[project.urls]
Homepage = "https://github.com/pkgcore/snakeoil"
Documentation = "https://pkgcore.github.io/snakeoil/"
Source = "https://github.com/pkgcore/snakeoil"

[tool.flit.sdist]
include = ["doc", "tox.ini", "tests", "LICENSE", "Makefile", "NEWS.rst"]
exclude = [".github/", ".gitignore", "doc/api/"]

[tool.pytest.ini_options]
minversion = "6.0"
addopts = "-vv -ra -l"
testpaths = ["tests"]