-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathpyproject.toml
69 lines (56 loc) · 1.57 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
[tool.poetry]
name = "eco2ai"
version = "0.3.10"
description = "emission tracking library"
authors = ["AI Lab",
"Vladimir Lazarev <[email protected]>",
"Nikita Zakharenko <[email protected]>",
"Semyon Budyonny <[email protected]>",
"Leonid Zhukov <[email protected]>",
"Alexey Korovin <[email protected]>"]
homepage = "https://github.com/sb-ai-lab/Eco2AI"
repository = "https://github.com/sb-ai-lab/Eco2AI"
classifiers = [
"Programming Language :: Python :: 3.7",
"Operating System :: OS Independent",
"Intended Audience :: Science/Research",
"Development Status :: 3 - Alpha",
"Environment :: Console",
"Natural Language :: English",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Typing :: Typed"
]
readme = "README.md"
packages = [
{ include = "eco2ai"}
]
[tool.poetry.dependencies]
python = "*"
pandas = [
{version = ">=1.2.1,<=1.3.5", python = ">=3.7.1, <3.8" },
{version = ">=1.4.0", python = ">=3.8"}
]
setuptools = "*"
APScheduler = [
{version = "*",python = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, <4"}
]
requests = [
{version = "*",python = ">=3.7, <4"}
]
pynvml = [
{version = "*",python = ">=3.6"}
]
psutil = ">=5.9.1"
tzlocal = [
{version = "*",python = ">=3.6"}
]
tornado = [
{version = "*",python = ">=3.7"}
]
py-cpuinfo = [
{version = "*",python = ">=3.7"}
]
[tool.poetry.dev-dependencies]
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"