Skip to content

Commit 670c58f

Browse files
committed
Bug: Wheel and tarball were not properly created
- Align - Use single quotes
1 parent 862b3d1 commit 670c58f

File tree

1 file changed

+38
-36
lines changed

1 file changed

+38
-36
lines changed

pyproject.toml

Lines changed: 38 additions & 36 deletions
Original file line numberDiff line numberDiff line change
@@ -1,51 +1,53 @@
11
[project]
2-
name = "data-manipulation-utilities"
3-
version = "0.3.1"
4-
description = "Project storing utilities needed to reduce boilerplate code when analyzing data"
5-
readme = "README.md"
6-
requires-python = ">=3.10,<3.14"
2+
name = 'data-manipulation-utilities'
3+
version = '0.3.2'
4+
description = 'Project storing utilities needed to reduce boilerplate code when analyzing data'
5+
readme = 'README.md'
6+
requires-python = '>=3.10,<3.14'
77
dependencies = [
8-
"PyYAML",
9-
"scipy",
10-
"awkward",
11-
"tqdm",
12-
"omegaconf",
13-
"toml",
14-
"uproot",
15-
"numpy<=2.2",
16-
"jinja2",
17-
"matplotlib",
18-
"mplhep",
19-
"pandas",
20-
"awkward-pandas",
21-
"dask[dataframe,distributed]",
22-
"hist[plot]",
8+
'PyYAML',
9+
'scipy',
10+
'awkward',
11+
'tqdm',
12+
'omegaconf',
13+
'toml',
14+
'uproot',
15+
'numpy<=2.2',
16+
'jinja2',
17+
'matplotlib',
18+
'mplhep',
19+
'pandas',
20+
'awkward-pandas',
21+
'hist[plot]',
2322
]
2423

2524
[project.optional-dependencies]
26-
ml = ["scikit-learn", "joblib", "optuna"]
27-
fit = ["zfit", "tensorflow"]
28-
dev = ["pytest", "pytest-xdist", "pandas-stubs", "memory-profiler"]
25+
parallel = ['dask[dataframe,distributed]']
26+
ml = ['scikit-learn', 'joblib', 'optuna']
27+
fit = ['zfit', 'tensorflow']
28+
dev = ['pytest', 'pytest-xdist', 'pandas-stubs', 'memory-profiler']
2929

3030
[project.scripts]
31-
transform_text = "dmu_scripts.text.transform_text:main"
32-
coned = "dmu_scripts.ssh.coned:main"
33-
check_truth = "dmu_scripts.physics.check_truth:main"
34-
print_trees = "dmu_scripts.rfile.print_trees:main"
35-
compare_root_files = "dmu_scripts.rfile.compare_root_files:main"
36-
compare_classifiers = "dmu_scripts.ml.compare_classifiers:main"
31+
transform_text = 'dmu_scripts.text.transform_text:main'
32+
coned = 'dmu_scripts.ssh.coned:main'
33+
check_truth = 'dmu_scripts.physics.check_truth:main'
34+
print_trees = 'dmu_scripts.rfile.print_trees:main'
35+
compare_root_files = 'dmu_scripts.rfile.compare_root_files:main'
36+
compare_classifiers = 'dmu_scripts.ml.compare_classifiers:main'
3737

3838
[build-system]
39-
requires = ["hatchling"]
40-
build-backend = "hatchling.build"
39+
requires = ['hatchling']
40+
build-backend = 'hatchling.build'
4141

4242
[tool.hatch.build]
4343
include = [
44-
"src/dmu_data/**/*.yaml",
45-
"src/dmu_data/**/*.toml",
46-
"src/dmu_data/**/*.json",
47-
"src/dmu_data/**/*.txt",
44+
'src/dmu_data/**/*.yaml',
45+
'src/dmu_data/**/*.toml',
46+
'src/dmu_data/**/*.json',
47+
'src/dmu_data/**/*.txt',
4848
]
4949

50+
packages = ['src/dmu', 'src/dmu_data']
51+
5052
[tool.hatch.build.targets.wheel]
51-
packages = ["src/dmu", "src/dmu_data"]
53+
packages = ['dmu', 'dmu_data']

0 commit comments

Comments
 (0)