-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
62 lines (54 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
52
53
54
55
56
57
58
59
60
61
62
[tool.poetry]
name = "creepo"
version = "1.0.0"
description = "a configurable caching repo"
authors = ["lane.holcombe <[email protected]>"]
[tool.poetry.dependencies]
python = "^3.10"
mime = "^0.1.0"
build = "^1.0.3"
cherrypy = "^18.9.0"
coverage = "^7.3.4"
flake8 = "^6.1.0"
lxml = "^4.9.4"
pylint = "^3.0.3"
pytest = "^7.4.3"
pyyaml = "^6.0.1"
requests = "^2.31.0"
routes = "^2.5.1"
pyopenssl = "^23.3.0"
sphinx = "^7.2.6"
sphinx-rtd-theme = "^2.0.0"
diskcache = "^5.6.3"
[tool.pytest.ini_options]
filterwarnings = [
"ignore: pkg_resources is deprecated as an API",
"ignore: Deprecated call to `pkg_resources.declare_namespace",
]
[tool.coverage.run]
omit = [
"venv/*",
]
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[project]
name = "creepo"
authors = [{name = "lane.holcombe", email = "[email protected]"}]
license = {file = "LICENSE"}
classifiers = ["License :: OSI Approved :: MIT License"]
dynamic = ["version", "description"]
dependencies = [
"cherrypy",
"coverage",
"diskcache",
"mime",
"pytest",
"pytest-cov"
]
[project.urls]
Homepage = "https://github.com/dooleydiligent/creepo"
Issues = "https://github.com/dooleydiligent/creepo/issues"
[project.optional-dependencies]
test = ["tox", "pytest", "coverage"]
lint = [ "black", "flake8"]