-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
update pipit version to 0.1.0 (#120)
- Loading branch information
Showing
1 changed file
with
13 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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", | ||
], | ||
) |