-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathsetup.py
More file actions
27 lines (25 loc) · 805 Bytes
/
setup.py
File metadata and controls
27 lines (25 loc) · 805 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
# Copyright 2022-2023 Parallel Software and Systems Group, University of
# Maryland. See the top-level LICENSE file for details.
#
# SPDX-License-Identifier: MIT
from setuptools import setup
setup(
name="pipit",
version="0.1.0",
description="A Python library for analyzing parallel execution traces",
url="https://github.com/hpcgroup/pipit",
author="Abhinav Bhatele",
author_email="bhatele@cs.umd.edu",
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",
],
)