Mercurial > code > home > repos > rdfdb
annotate pyproject.toml @ 115:489e341f765d 0.24.0
release 0.24.0
author | drewp@bigasterisk.com |
---|---|
date | Thu, 24 Nov 2022 20:41:06 -0800 |
parents | 703c44bfa3d5 |
children | 418050704a42 |
rev | line source |
---|---|
79 | 1 [project] |
2 name = "rdfdb" | |
115 | 3 version = "0.24.0" |
79 | 4 description = "" |
91 | 5 authors = [{ name = "Drew Perttula", email = "drewp@bigasterisk.com" }] |
115 | 6 license = "MIT" |
79 | 7 dependencies = [ |
8 'rdflib', | |
9 'autobahn', | |
90 | 10 "prometheus-client>=0.13.1", |
92 | 11 "starlette-exporter>=0.12.0", |
12 "asyncinotify>=2.0.2", | |
96 | 13 "aiohttp>=3.8.1", |
79 | 14 ] |
15 requires-python = ">=3.9" | |
16 | |
17 [project.urls] | |
18 Homepage = "" | |
19 | |
91 | 20 # url='https://projects.bigasterisk.com/rdfdb/rdfdb-0.21.0.tar.gz', |
79 | 21 [project.optional-dependencies] |
91 | 22 |
79 | 23 [tool.pdm] |
91 | 24 |
79 | 25 [tool.pdm.dev-dependencies] |
26 dev = [ | |
27 "flake8>=4.0.1", | |
28 "yapf>=0.32.0", | |
81
8d3c3e7cfb54
(barely) runnable demo service instance
drewp@bigasterisk.com
parents:
79
diff
changeset
|
29 "pytest>=7.1.1", |
8d3c3e7cfb54
(barely) runnable demo service instance
drewp@bigasterisk.com
parents:
79
diff
changeset
|
30 "pytest-watcher>=0.2.3", |
92 | 31 "mock", |
32 "pytest-asyncio>=0.18.3", | |
108 | 33 "pydeps>=1.10.18", |
79 | 34 ] |
35 | |
36 [build-system] | |
37 requires = ["pdm-pep517>=0.12.0"] | |
38 build-backend = "pdm.pep517.api" | |
84
36f4318442f2
clean up Literal monkeypatch that makes formatting better
drewp@bigasterisk.com
parents:
81
diff
changeset
|
39 |
36f4318442f2
clean up Literal monkeypatch that makes formatting better
drewp@bigasterisk.com
parents:
81
diff
changeset
|
40 [tool.pytest.ini_options] |
36f4318442f2
clean up Literal monkeypatch that makes formatting better
drewp@bigasterisk.com
parents:
81
diff
changeset
|
41 filterwarnings = [ |
36f4318442f2
clean up Literal monkeypatch that makes formatting better
drewp@bigasterisk.com
parents:
81
diff
changeset
|
42 # The below warning is a consequence of how pytest doctest detects mocks and how DefinedNamespace behaves when an undefined attribute is being accessed. |
36f4318442f2
clean up Literal monkeypatch that makes formatting better
drewp@bigasterisk.com
parents:
81
diff
changeset
|
43 'ignore:Code. pytest_mock_example_attribute_that_shouldnt_exist is not defined in namespace .*:UserWarning', |
36f4318442f2
clean up Literal monkeypatch that makes formatting better
drewp@bigasterisk.com
parents:
81
diff
changeset
|
44 # The below warning is a consequence of how pytest detects fixtures and how DefinedNamespace behaves when an undefined attribute is being accessed. |
36f4318442f2
clean up Literal monkeypatch that makes formatting better
drewp@bigasterisk.com
parents:
81
diff
changeset
|
45 'ignore:Code. _pytestfixturefunction is not defined in namespace .*:UserWarning', |
91 | 46 ] |
47 asyncio_mode = "strict" | |
48 log_cli = 1 | |
49 log_cli_level = "INFO" | |
50 addopts = "--tb=short" |