Mercurial > code > home > repos > rdfdb
comparison pyproject.toml @ 91:12bffd51450f
project config
author | drewp@bigasterisk.com |
---|---|
date | Sun, 15 May 2022 15:47:43 -0700 |
parents | f9282b33b8d0 |
children | 5ebb6129c035 |
comparison
equal
deleted
inserted
replaced
90:f9282b33b8d0 | 91:12bffd51450f |
---|---|
1 [project] | 1 [project] |
2 name = "rdfdb" | 2 name = "rdfdb" |
3 version = "0.22.0" | 3 version = "0.22.0" |
4 description = "" | 4 description = "" |
5 authors = [ | 5 authors = [{ name = "Drew Perttula", email = "drewp@bigasterisk.com" }] |
6 {name = "Drew Perttula", email = "drewp@bigasterisk.com"}, | |
7 ] | |
8 license-expression = "MIT" | 6 license-expression = "MIT" |
9 dependencies = [ | 7 dependencies = [ |
10 'rdflib', | 8 'rdflib', |
11 'cyclone', | 9 'cyclone', |
12 'mock', | 10 'mock', |
17 ] | 15 ] |
18 requires-python = ">=3.9" | 16 requires-python = ">=3.9" |
19 | 17 |
20 [project.urls] | 18 [project.urls] |
21 Homepage = "" | 19 Homepage = "" |
22 # url='https://projects.bigasterisk.com/rdfdb/rdfdb-0.21.0.tar.gz', | |
23 | 20 |
21 # url='https://projects.bigasterisk.com/rdfdb/rdfdb-0.21.0.tar.gz', | |
24 [project.optional-dependencies] | 22 [project.optional-dependencies] |
23 | |
25 [tool.pdm] | 24 [tool.pdm] |
25 | |
26 [tool.pdm.dev-dependencies] | 26 [tool.pdm.dev-dependencies] |
27 dev = [ | 27 dev = [ |
28 "flake8>=4.0.1", | 28 "flake8>=4.0.1", |
29 "yapf>=0.32.0", | 29 "yapf>=0.32.0", |
30 "pytest>=7.1.1", | 30 "pytest>=7.1.1", |
40 # The below warning is a consequence of how pytest doctest detects mocks and how DefinedNamespace behaves when an undefined attribute is being accessed. | 40 # The below warning is a consequence of how pytest doctest detects mocks and how DefinedNamespace behaves when an undefined attribute is being accessed. |
41 'ignore:Code. pytest_mock_example_attribute_that_shouldnt_exist is not defined in namespace .*:UserWarning', | 41 'ignore:Code. pytest_mock_example_attribute_that_shouldnt_exist is not defined in namespace .*:UserWarning', |
42 # The below warning is a consequence of how pytest detects fixtures and how DefinedNamespace behaves when an undefined attribute is being accessed. | 42 # The below warning is a consequence of how pytest detects fixtures and how DefinedNamespace behaves when an undefined attribute is being accessed. |
43 'ignore:Code. _pytestfixturefunction is not defined in namespace .*:UserWarning', | 43 'ignore:Code. _pytestfixturefunction is not defined in namespace .*:UserWarning', |
44 ] | 44 ] |
45 asyncio_mode = "strict" | |
46 log_cli = 1 | |
47 log_cli_level = "INFO" | |
48 addopts = "--tb=short" |