-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·34 lines (33 loc) · 1.25 KB
/
Copy pathsetup.py
File metadata and controls
executable file
·34 lines (33 loc) · 1.25 KB
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
from setuptools import setup, find_packages
setup(
name='TraceLens',
version='0.1.0',
packages=find_packages(where='.'), # Will pick up 'TraceLens' automatically
package_dir={"": "."},
install_requires=[
'pandas',
'tqdm',
'backports.strenum;python_version<"3.11"',
'StrEnum;python_version<"3.11"',
# 'openpyxl',
# 'tensorboard-plugin-profile==2.19.0',
# 'tensorflow',
],
description="A library for Automating analysis from PyTorch trace files",
long_description=open('README.md').read(),
long_description_content_type='text/markdown',
url='https://github.com/AMD-AIG-AIMA/TraceLens',
classifiers=[
'Programming Language :: Python :: 3',
# 'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
],
python_requires='>=3.6',
entry_points={
"console_scripts": [
"TraceLens_jax_analysis_perf_reporting = TraceLens.Reporting.generate_perf_report_jax_analysis:main",
"TraceLens_generate_perf_report_pytorch = TraceLens.Reporting.generate_perf_report_pytorch:main",
"TraceLens_compare_perf_reports_pytorch = TraceLens.Reporting.compare_perf_reports_pytorch:main",
],
},
)