-
Notifications
You must be signed in to change notification settings - Fork 29
/
Copy pathpyproject.toml
37 lines (30 loc) · 1016 Bytes
/
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
[build-system]
requires = ["setuptools>=61.0", "setuptools_scm[toml]>=6.2"]
build-backend = "setuptools.build_meta"
[project]
name = "carbontracker"
description = "Tracking and predicting the 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" },
]
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/lfwa/carbontracker"
repository = "https://github.com/lfwa/carbontracker"
[tool.setuptools]
packages = ['carbontracker']
[tool.setuptools_scm]
[project.optional-dependencies]
test = ["pyfakefs"]
docs = ["mkdocs", "mkdocstrings[python]"]
[project.scripts]
carbontracker = "carbontracker.cli:main"