@@ -7,11 +7,9 @@ name = "your-package-name"
77dynamic = [" version" ]
88requires-python = " >=3.11"
99dependencies = []
10- authors = [
11- {
name =
" Ben Welsh" ,
email =
" [email protected] " },
12- ]
10+ authors = [{
name =
" Ben Welsh" ,
email =
" [email protected] " }]
1311description = " Your package description"
14- license = {text = " MIT" }
12+ license = { text = " MIT" }
1513readme = " README.md"
1614classifiers = [
1715 " Development Status :: 5 - Production/Stable" ,
@@ -26,18 +24,21 @@ classifiers = [
2624]
2725
2826[project .optional-dependencies ]
29- dev = [
30- " pre-commit" ,
31- " setuptools-scm" ,
32- " pyright" ,
33- " vulture" ,
34- ]
27+ dev = [" pre-commit" , " setuptools-scm" , " pyright" , " vulture" ]
3528test = [
36- " pytest-runner " ,
29+ " pytest" ,
3730 " pytest-cov" ,
3831 " pytest-env" ,
32+ " pytest-ordering" ,
33+ " pytest-randomly" ,
34+ " pytest-rerunfailures" ,
35+ " pytest-runner" ,
36+ " pytest-sugar" ,
37+ " pytest-timeout" ,
3938 " pytest-vcr" ,
4039 " pytest-xdist" ,
40+ " freezegun" ,
41+ " hypothesis" ,
4142]
4243docs = [
4344 " sphinx" ,
@@ -120,7 +121,7 @@ ignore = [
120121docstring-code-format = true
121122
122123[tool .pytest .ini_options ]
123- addopts = " --strict-markers --cov=reuters_data_wire --cov-branch --cov-report=term-missing:skip-covered --cov-context=test --cov-fail-under=70 -n auto --timeout=60"
124+ # addopts = "--strict-markers --cov=your_package_name --cov-branch --cov-report=term-missing:skip-covered --cov-context=test --cov-fail-under=70 -n auto --timeout=60"
124125testpaths = [" tests" ]
125126python_files = " test_*.py"
126127markers = [
@@ -145,13 +146,7 @@ omit = ["*/__pycache__/*"]
145146venvPath = " ."
146147venv = " .venv"
147148# include = ["your_package_name"]
148- exclude = [
149- " tests" ,
150- " build" ,
151- " .venv" ,
152- " _notebooks" ,
153- " **/__pycache__" ,
154- ]
149+ exclude = [" tests" , " build" , " .venv" , " _notebooks" , " **/__pycache__" ]
155150
156151# Type checking mode - "off", "basic", "standard", or "strict"
157152typeCheckingMode = " standard"
0 commit comments