Skip to content

Commit

Permalink
update pipit version to 0.1.0 (#120)
Browse files Browse the repository at this point in the history
  • Loading branch information
bhatele authored Nov 15, 2023
1 parent 006c2d1 commit bf974ff
Showing 1 changed file with 13 additions and 5 deletions.
18 changes: 13 additions & 5 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,17 +3,25 @@
#
# SPDX-License-Identifier: MIT


from setuptools import setup

setup(
name="pipit",
version="0.0.1",
version="0.1.0",
description="A Python library for analyzing parallel execution traces",
url="https://github.com/hpcgroup/pipit",
author="Abhinav Bhatele",
author_email="[email protected]",
classifiers=["Development Status :: 2 - Pre-Alpha"],
keywords="distributed computing, parallel computing",
packages=[],
license="MIT",
classifiers=[
"Development Status :: 4 - Beta",
"License :: OSI Approved :: MIT License",
],
keywords="distributed computing, parallel computing, GPU traces",
packages=["pipit", "pipit.readers", "pipit.tests", "pipit.util", "pipit.writers"],
install_requires=[
"numpy",
"otf2",
"pandas",
],
)

0 comments on commit bf974ff

Please sign in to comment.