Mercurial > code > home > repos > rdfdb
annotate pyproject.toml @ 96:90d094bcf005
add aiohttp
author | drewp@bigasterisk.com |
---|---|
date | Sat, 21 May 2022 22:16:26 -0700 |
parents | 5ebb6129c035 |
children | a4a060241c73 |
rev | line source |
---|---|
79 | 1 [project] |
2 name = "rdfdb" | |
3 version = "0.22.0" | |
4 description = "" | |
91 | 5 authors = [{ name = "Drew Perttula", email = "drewp@bigasterisk.com" }] |
79 | 6 license-expression = "MIT" |
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", | |
79 | 33 ] |
34 | |
35 [build-system] | |
36 requires = ["pdm-pep517>=0.12.0"] | |
37 build-backend = "pdm.pep517.api" | |
84
36f4318442f2
clean up Literal monkeypatch that makes formatting better
drewp@bigasterisk.com
parents:
81
diff
changeset
|
38 |
36f4318442f2
clean up Literal monkeypatch that makes formatting better
drewp@bigasterisk.com
parents:
81
diff
changeset
|
39 [tool.pytest.ini_options] |
36f4318442f2
clean up Literal monkeypatch that makes formatting better
drewp@bigasterisk.com
parents:
81
diff
changeset
|
40 filterwarnings = [ |
36f4318442f2
clean up Literal monkeypatch that makes formatting better
drewp@bigasterisk.com
parents:
81
diff
changeset
|
41 # 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
|
42 '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
|
43 # 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
|
44 'ignore:Code. _pytestfixturefunction is not defined in namespace .*:UserWarning', |
91 | 45 ] |
46 asyncio_mode = "strict" | |
47 log_cli = 1 | |
48 log_cli_level = "INFO" | |
49 addopts = "--tb=short" |