-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
40 lines (38 loc) · 1.37 KB
/
pyproject.toml
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
40
[build-system]
requires = ["setuptools>=61.0.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "GATorch"
version = "0.0.2"
authors = [
{ name="Rover van der Noort", email="[email protected]" },
{ name="Martijn Smits", email="[email protected]" },
{ name="Dajt Mullaj", email="[email protected]" },
{ name="Remy Duijsens", email="[email protected]" },
]
description = "GATorch is a tool seamlessly integrated with PyTorch that enables ML developers to generate an energy consumption report. By attaching your model, the tool automatically tracks the energy consumption of your model's training and generates graphs and plots to gain in-depth insights into the energy consumption of your model."
readme = "README.md"
requires-python = ">=3.7"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
keywords = ["PyTorch", "Green AI", "sustainable software software"]
dependencies = [
"torch==2.0.0",
"torchvision",
"torchaudio",
"pyRAPL",
"pymongo",
"pandas",
"pyJoules",
"pyJoules[nvidia]",
"matplotlib",
"codecarbon",
"scipy",
"tensorboard"
]
[project.urls]
"Homepage" = "https://github.com/GreenAITorch/GATorch"
"Bug Tracker" = "https://github.com/GreenAITorch/GATorch/issues"