-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
39 lines (35 loc) · 1.18 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
from setuptools import setup, find_packages
def readme():
return open("README.md").read()
if __name__ == "__main__":
setup(
name="timeloopfe",
version="0.4",
description="Front End for Timeloop & Accelergy",
classifiers=[
"Development Status :: 3 - Alpha",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering :: Electronic Design Automation (EDA)",
],
keywords="accelerator hardware energy estimation",
author="Tanner Andrulis",
author_email="[email protected]",
license="MIT",
packages=find_packages(),
install_requires=[
"accelergy >= 0.4",
"ruamel.yaml",
"psutil",
"joblib",
"argparse",
],
python_requires=">=3.8",
# Have the "timeloop" or "tl" commands call timeloopfe/command_line_interface.py
entry_points={
"console_scripts": [
"timeloop = timeloopfe.command_line_interface:main",
"tl = timeloopfe.command_line_interface:main",
],
},
)