forked from lfwa/carbontracker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
33 lines (28 loc) · 1.06 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
[build-system]
requires = ["setuptools>=61.0", "setuptools_scm[toml]>=6.2"]
build-backend = "setuptools.build_meta"
[project]
name = "carbontracker"
description = "A custom variant of 'carbontracker' for the Lancaster University Hex multicomputer- Track and predict the energy consumption and carbon footprint of training deep learning models."
readme = "README.md"
requires-python = ">=3.7"
license = { file = "LICENSE" }
authors = [
{ name = "Lasse F. Wolff Anthony", email = "lfwa@proton.me" },
{ name = "Benjamin Kanding" },
{ name = "John Vidler", email = "j.vidler@lancaster.ac.uk" }
]
classifiers = [
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
]
dependencies = ["requests", "numpy", "pandas", "geocoder", "pynvml", "psutil", "importlib-metadata"]
dynamic = ["version"]
[project.urls]
homepage = "https://github.com/JohnVidler/carbontracker"
repository = "https://github.com/JohnVidler/carbontracker"
[tool.setuptools_scm]
[project.scripts]
carbontracker = "carbontracker.cli:main"
[tool.setuptools]
py-modules = []