This repository has been archived by the owner on Dec 19, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 16
/
pyproject.toml
105 lines (94 loc) · 2.27 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
[tool.poetry]
name = "datasetinsights"
version = "1.0.0"
description = "Synthetic dataset insights."
license = "Apache-2.0"
authors = [
"Unity AI Perception Team <[email protected]>"
]
readme = "README.md"
homepage = "https://github.com/Unity-Technologies/datasetinsights"
repository = "https://github.com/Unity-Technologies/datasetinsights"
documentation = "https://datasetinsights.readthedocs.io/en/latest/"
classifiers = [
"Development Status :: 3 - Alpha",
"Environment :: Console",
"Framework :: Jupyter",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Scientific/Engineering :: Visualization",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Utilities"
]
include = [
"LICENSE",
]
[tool.poetry.dependencies]
python = ">=3.8 <3.11"
cython = "^0.29.14"
google-cloud-storage = "^1.24.1"
numpy = "^1.17"
plotly = ">=5.0.0"
pyquaternion = "^0.9.5"
codetiming = "^1.2.0"
pandas = "^1.0.1"
tqdm = "^4.45.0"
dask = {extras = ["complete"], version = "^2.14.0"}
dash = "^2.3.1"
click = "8.0.4"
opencv-python = "^4.4.0.42"
matplotlib = "^3.3.1"
scipy = "^1.8.0"
PyWavelets = "^1.3.0"
pycocotools = "^2.0.4"
seaborn = "^0.11.2"
[tool.poetry.dev-dependencies]
black = "22.3.0"
flake8 = "^3.7.9"
pytest = "^6.0.2"
pytest-cov = "^2.8.1"
responses = "^0.10.9"
isort = "^4.3.21"
sphinx-rtd-theme = "^0.5.0"
recommonmark = "^0.6.0"
sphinx-click = "^2.5.0"
[tool.isort]
multi_line_output = 3
include_trailing_comma = true
force_grid_wrap = 0
use_parentheses = true
line_length = 80
[tool.black]
line-length = 80
target-version = ["py37"]
include = '\.pyi?$'
exclude = '''
(
/(
\.eggs # exclude a few common directories in the
| \.git # root of the project
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| _build
| buck-out
| build
| dist
| protos
)/
)
'''
[tool.pytest.ini_options]
addopts = "--cov=datasetinsights -rxXs --verbose"
testpaths = [
"tests"
]
[tool.poetry.scripts]
datasetinsights = "datasetinsights.__main__:entrypoint"
[build-system]
requires = ["poetry>=1.0.5"]
build-backend = "poetry.masonry.api"