forked from ampas/idt-calculator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
114 lines (105 loc) · 2.81 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
[tool.poetry]
name = "idt-calculator"
version = "0.1.0"
description = "An ACES Input Device Transform (IDT) calculator"
license = "License Terms for Academy Color Encoding System Components"
authors = [ "Alex Forsythe <[email protected]>", "Thomas Mansencal <[email protected]>" ]
maintainers = [ "Academy of Motion Picture Arts and Sciences <[email protected] >" ]
readme = 'README.rst'
repository = "https://github.com/ampas/idt-calculator"
homepage = "https://www.oscars.org/science-technology/sci-tech-projects/aces"
keywords = [
"aces",
"ampas",
"color",
"color-science",
"color-space",
"color-spaces",
"colorspace",
"colorspaces",
"colour",
"colour-science",
"colour-space",
"colour-spaces",
"colourspace",
"colourspaces",
"dash",
"docker",
"python"
]
classifiers = [
"Development Status :: 3 - Alpha",
"Environment :: Console",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering",
"Topic :: Software Development"
]
[tool.poetry.dependencies]
python = ">= 3.8, < 3.11"
colour-datasets = ">= 0.2.0"
colour-checker-detection = ">= 0.1.3"
colour-science = ">= 0.4.0"
dash = "*"
dash-bootstrap-components = "*"
dash-renderer = "*"
dash-uploader = "*"
gunicorn = "*"
imageio = ">= 2, < 3"
jsonpickle = ">= 2, < 3"
matplotlib = ">= 3.2, != 3.5.0, != 3.5.1"
networkx = ">= 2, < 3"
numpy = ">= 1.19, < 2"
scipy = ">= 1.5, < 2"
plotly = "*"
typing-extensions = ">= 4, < 5" # Convenience for Google Colab.
black = { version = "*", optional = true } # Development dependency.
coverage = { version = "*", optional = true } # Development dependency.
flake8 = { version = "*", optional = true } # Development dependency.
invoke = { version = "*", optional = true } # Development dependency.
nose = { version = "*", optional = true } # Development dependency.
pre-commit = { version = "*", optional = true } # Development dependency.
pytest = { version = "*", optional = true } # Development dependency.
[tool.poetry.dev-dependencies]
black = "*"
coverage = "*"
flake8 = "*"
invoke = "*"
nose = "*"
pre-commit = "*"
pytest = "*"
[tool.poetry.extras]
development = [
"black",
"coverage",
"flake8",
"invoke",
"nose",
"pre-commit",
"pytest",
]
[tool.black]
line-length = 79
exclude = '''
/(
\.git
| \.mypy_cache
| build
| dist
)/
'''
[tool.flynt]
line_length=999
[tool.mypy]
plugins = "numpy.typing.mypy_plugin"
ignore_missing_imports = true
[tool.pydocstyle]
convention = "numpy"
add-ignore = "D104,D200,D202,D205,D301,D400"
[build-system]
requires = ["poetry_core>=1.0.0"]
build-backend = "poetry.core.masonry.api"