diff --git a/1setup.py b/1setup.py new file mode 100644 index 00000000..5212c78b --- /dev/null +++ b/1setup.py @@ -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"], +) diff --git a/pixi.lock b/pixi.lock index 1d958cdf..a322af6a 100644 --- a/pixi.lock +++ b/pixi.lock @@ -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 diff --git a/pyproject.toml b/pyproject.toml index c5c13e35..96fa1aff 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -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"