-
Notifications
You must be signed in to change notification settings - Fork 18
/
pyproject.toml
126 lines (117 loc) · 2.78 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[project]
name = "ml-logger"
version = "0.10.24"
description = ""
authors = ["Ge Yang <[email protected]>"]
keywords = ["ml_logger", "visualization", "logging", "debug", "debugging"]
classifiers = [
"Development Status :: 4 - Beta",
"Programming Language :: Python :: 3",
"Intended Audience :: Science/Research",
]
readme = "README.md"
license = "MIT"
homepage = "https://github.com/geyang/ml-logger"
repository = "https://github.com/geyang/ml-logger"
include = [
"LICENSE.md",
]
requires-python = ">=3.8.0"
dependencies = [
"boto3",
"cloudpickle==1.3.0",
"dill",
"expandvars",
"google-api-python-client",
"google-cloud-storage",
"imageio",
"imageio-ffmpeg",
"more-itertools",
"pillow",
"params-proto>=2.10.0",
"jaynes>=0.9.0",
"pycurl",
"numpy",
"requests",
"requests-futures",
"requests-toolbelt",
"ruamel.yaml",
"sanic",
"sanic-cors",
"scipy",
"scikit-image",
"scikit-video",
"termcolor",
"typing",
"urllib3",
"wcmatch"
]
[project.scripts]
# Note, add entrypoint name to scripts/completions/install.py to include CLI completion
ml-download = "ml_logger.cli.download:entrypoint"
ml-upload= "ml_logger.cli.upload:entrypoint"
[tool.setuptools.packages.find]
include = ["ml_logger", "ml_logger.cli"]
[tool.setuptools.package-data]
"*" = []
# black
[tool.black]
line-length = 140
[tool.poetry]
name = "ml-logger"
version = "0.10.30"
description = ""
authors = ["Ge Yang <[email protected]>"]
keywords = ["ml_logger", "visualization", "logging", "debug", "debugging"]
classifiers = [
"Development Status :: 4 - Beta",
"Programming Language :: Python :: 3",
"Intended Audience :: Science/Research",
]
readme = "README.md"
license = "MIT"
homepage = "https://github.com/geyang/ml-logger"
repository = "https://github.com/geyang/ml-logger"
include = [
"LICENSE.md",
]
[tool.poetry.scripts]
# Note, add entrypoint name to scripts/completions/install.py to include CLI completion
ml-download = "ml_logger.cli.download:entrypoint"
ml-upload= "ml_logger.cli.upload:entrypoint"
[tool.poetry.dependencies]
python = ">=3.8.0"
boto3 = "*"
cloudpickle = "==1.3.0"
dill = "*"
expandvars = "*"
google-api-python-client = "*"
google-cloud-storage = "*"
imageio = "*"
imageio-ffmpeg = "*"
jaynes = ">=0.9.0"
matplotlib = "*"
more-itertools = "*"
numpy = "*"
pillow = "*"
pycurl = "*"
params-proto = ">=2.10.0"
requests = "*"
requests-futures = "*"
requests-toolbelt = "*"
"ruamel.yaml" = "*"
sanic = "20.9.0"
sanic-routing = "22.3.0"
sanic-cors = "0.10.0.post3"
scipy = "*"
scikit-image = "*"
scikit-video = "*"
termcolor = "*"
typing = "*"
urllib3 = "*"
wcmatch = "*"
#[tool.poetry.scripts]
#cli_command_name = 'package_name:function'