forked from colour-science/gamut-mapping-ramblings
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
52 lines (49 loc) · 1.42 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
[tool.poetry]
name = "gamut-mapping-ramblings"
version = "0.1.0"
description = "Gamut Mapping - Ramblings"
license = "BSD-3-Clause"
authors = [ "Colour Developers <[email protected]>" ]
maintainers = [ "Colour Developers <[email protected]>" ]
readme = 'README.rst'
repository = "https://github.com/colour-science/gamut-mapping-ramblings"
homepage = "https://www.colour-science.org/"
keywords = [
"color",
"color-science",
"color-space",
"color-spaces",
"colorspace",
"colorspaces",
"colour",
"colour-science",
"colour-space",
"colour-spaces",
"colourspace",
"colourspaces",
"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.5"
colour = { git = "https://github.com/colour-science/colour.git", branch = "develop" }
ipympl = { version = "*"}
ipywidgets = { version = "*"}
jupyter = { version = "*"}
jupyterlab = { version = "*"}
matplotlib = { version = "*"}
ipynb = { version = "*"}
[build-system]
requires = [ "poetry>=0.12" ]
build-backend = "poetry.masonry.api"