forked from facebookresearch/HolisticTraceAnalysis
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
39 lines (34 loc) · 1.24 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
38
39
# Copyright (c) Meta Platforms, Inc. and affiliates.
# This source code is licensed under the MIT license found in the
# LICENSE file in the root directory of this source tree.
import setuptools
from docs.conf import find_version
def fetch_requirements():
with open("requirements.txt") as f:
reqs = f.read().strip().split("\n")
return reqs
setuptools.setup(
name="HolisticTraceAnalysis",
description="A python library for analyzing PyTorch Profiler traces",
version=find_version("hta/version.py"),
url="https://github.com/facebookresearch/HolisticTraceAnalysis",
python_requires=">=3.8",
author="Meta Platforms Inc.",
author_email="[email protected]",
license="MIT",
install_requires=fetch_requirements(),
include_package_data=True,
package_dir={
"hta": "hta",
"param_bench": "third_party/param/",
},
classifiers=[
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"License :: OSI Approved :: MIT License",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Operating System :: OS Independent",
],
)