This repository has been archived by the owner on Nov 24, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
77 lines (72 loc) · 2.07 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
[tool.poetry]
name = "colour-streamlit-tm-30-18"
version = "0.1.0"
description = "Generates the \"ANSI/IES TM-30-18 Colour Rendition Report\" using Colour and Streamlit."
license = "BSD-3-Clause"
authors = [ "Colour Developers <colour-developers@colour-science.org>" ]
maintainers = [ "Colour Developers <colour-developers@colour-science.org>" ]
readme = 'README.rst'
repository = "https://github.com/colour-science/colour-streamlit-tm-30-18"
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",
"streamlit",
"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.6"
colour-science = "^0.3.16"
matplotlib = "*"
streamlit = "*"
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.
yapf = { version = "0.23", optional = true } # Development dependency.
[tool.poetry.dev-dependencies]
coverage = "*"
flake8 = "*"
invoke = "*"
nose = "*"
pre-commit = ">= 3.5"
pytest = "*"
yapf = "*"
[tool.poetry.extras]
development = [
"coverage",
"flake8",
"invoke",
"nose",
"pre",
"pytest",
"yapf"
]
[build-system]
requires = [ "poetry>=0.12" ]
build-backend = "poetry.masonry.api"