Skip to content

Commit

Permalink
Merge pull request #412 from dyson-ai/hotfix/setuppy
Browse files Browse the repository at this point in the history
hotfix
  • Loading branch information
blooop authored Jun 15, 2024
2 parents 001c54c + 13ec904 commit 3faa473
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 3 deletions.
18 changes: 18 additions & 0 deletions 1setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
from setuptools import setup, find_packages

package_name = "bencher"

setup(
name=package_name,
description="A library for benchmarking code and generating reports for analysis",
# maintainer="austin.gregg-smith",
# maintainer_email="austin.gregg-smith@dyson.com",
packages=find_packages(exclude=["test.*", "test"]),
data_files=[
("share/ament_index/resource_index/packages", ["resource/" + package_name]),
("share/" + package_name, ["package.xml"]),
],
zip_safe=False,
test_suite="test",
tests_require=["pytest"],
)
4 changes: 2 additions & 2 deletions pixi.lock
Original file line number Diff line number Diff line change
Expand Up @@ -530,9 +530,9 @@ packages:
requires_python: '>=3.7'
- kind: pypi
name: bencher
version: 1.26.0
version: 1.26.2
path: .
sha256: 2624f8d258e158608388f26fa8031f3c780d8db11a1fc840b28e4246bf64ea1c
sha256: 813d28ade748694fe22bcd0ccd22d1350a7f7153457911e0205e2513c8769448
requires_dist:
- holoviews>=1.15,<=1.19.0
- numpy>=1.0,<=1.26.4
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "bencher"
version = "1.26.1"
version = "1.26.2"

authors = [{ name = "Austin Gregg-Smith", email = "blooop@gmail.com" }]
description = "A package for benchmarking the performance of arbitrary functions"
Expand Down

0 comments on commit 3faa473

Please sign in to comment.