-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathpyproject.toml
62 lines (58 loc) · 1.34 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
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[project]
name = "ml-logger"
version = "0.10.36"
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==3.1.1",
"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]
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]
"*" = []