We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d9116c2 commit 665a559Copy full SHA for 665a559
.pre-commit-config.yaml
@@ -1,10 +1,10 @@
1
repos:
2
- repo: https://github.com/psf/black
3
- rev: 22.3.0
+ rev: 23.12.0
4
hooks:
5
- id: black
6
- repo: https://github.com/pycqa/isort
7
- rev: 5.10.1
+ rev: 5.13.2
8
9
- id: isort
10
name: isort (python)
benchmarks/setup.py
@@ -5,4 +5,10 @@
setup(
name="benchmarks",
packages=find_packages(),
+ package_data={
+ # If any package contains *.txt or *.json files, include them:
+ "": ["*.csv"],
11
+ # And include any files found in the 'mypackage/data' directory:
12
+ "benchmarks": ["datasets/*"],
13
+ },
14
)
0 commit comments