Skip to content

Commit aa55a9d

Browse files
committed
misc updates to package boilerplate
1 parent abab601 commit aa55a9d

File tree

5 files changed

+1394
-10
lines changed

5 files changed

+1394
-10
lines changed

.deepsource.toml

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
version = 1
2+
3+
test_patterns = [
4+
"tests/**"
5+
]
6+
7+
[[analyzers]]
8+
name = "python"
9+
enabled = true
10+
runtime_version = "3.x.x"
11+
12+
[analyzers.meta]
13+
max_line_length = 100

.gitignore

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,8 @@
5050
.scrapy
5151
.spyderproject
5252
.spyproject
53+
.tags
54+
.tags.mk
5355
.tox/
5456
.venv
5557
.vscode
@@ -61,7 +63,9 @@ __marimo__/
6163
__pycache__/
6264
__pypackages__/
6365
archive
66+
bdist
6467
bioutils/_data/assemblies/pull
68+
build
6569
build/
6670
celerybeat-schedule
6771
celerybeat.pid
@@ -71,7 +75,10 @@ cython_debug/
7175
develop-eggs/
7276
dist/
7377
dmypy.json
78+
doc*/changelog/*/.tags
79+
doc*/changelog/*/.tags.mk
7480
doc/_build
81+
doc/build
7582
doc/changelog/*/.tags
7683
doc/changelog/*/.tags.mk
7784
doc/changelog/*/hg-git-remap.pl

.mailmap

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
1+
# This file is used by Git to consolidate the users who used multiple accounts
2+
# I pick the account with the most modified files in git shortlog -sne
13
Andreas Prlic <[email protected]> Andreas Prlic <[email protected]>
24
Andreas Prlic <[email protected]> Andreas Prlic <[email protected]>
35
Caitlin Gong <[email protected]> Caitlin Gong <[email protected]>
4-
# I pick the account with the most modified files in git shortlog -sne
56
Katie Stahl <[email protected]> katie stahl <[email protected]>
67
Manuel Holtgrewe <[email protected]> Manuel Holtgrewe <[email protected]>
78
@@ -10,4 +11,3 @@ Reece Hart <[email protected]> Reece Hart <[email protected]>
1011
Reece Hart <[email protected]> Reece Hart <[email protected]>
1112
Reece Hart <[email protected]> Reece Hart <[email protected]>
1213
Rudy Rico <[email protected]> Rudolph Rico <[email protected]>
13-
# This is used by Git to consolidate the users who used multiple accounts

tox.ini

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,10 @@ python =
1111
[testenv]
1212
allowlist_externals = uv
1313
commands =
14-
uv sync --python {envpython}
15-
uv run python -m pytest --doctest-modules tests --cov --cov-config=pyproject.toml --cov-report=xml
16-
ty check
14+
make test
1715
passenv = PYTHON_VERSION
16+
setenv =
17+
PYTHONHASHSEED = 0
18+
usedevelop = True
19+
whitelist_externals =
20+
make

0 commit comments

Comments
 (0)