-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathsetup.py
37 lines (33 loc) · 1.04 KB
/
setup.py
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
28
29
30
31
32
33
34
35
36
37
# Copyright 2017-2020 Lawrence Livermore National Security, LLC and other
# Hatchet Project Developers. See the top-level LICENSE file for details.
#
# SPDX-License-Identifier: MIT
from setuptools import setup
from codecs import open
from os import path
here = path.abspath(path.dirname(__file__))
# Get the long description from the README file
with open(path.join(here, "README.md"), encoding="utf-8") as f:
long_description = f.read()
setup(
name="hatchet",
version="1.0.1",
description="A Python library for analyzing hierarchical performance data",
url="https://github.com/LLNL/hatchet",
author="Abhinav Bhatele",
author_email="bhatele@cs.umd.edu",
license="MIT",
classifiers=[
"Development Status :: 3 - Alpha",
"License :: OSI Approved :: MIT License",
],
keywords="",
packages=[
"hatchet",
"hatchet.readers",
"hatchet.util",
"hatchet.external",
"hatchet.tests",
],
install_requires=["pydot", "PyYAML", "matplotlib", "numpy", "pandas==0.23.0"],
)