-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathpyproject.toml
51 lines (45 loc) · 1.3 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
[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 = "[email protected]"},
{name = "Brian Harring", email = "[email protected]"},
{name = "Arthur Zamarin", email = "[email protected]"},
]
maintainers = [
{name = "Arthur Zamarin", email = "[email protected]"},
]
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"]