forked from colour-science/colour
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
131 lines (126 loc) · 3.83 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
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
[tool.poetry]
name = "colour"
version = "0.3.15"
description = "Colour Science for Python"
license = "BSD-3-Clause"
authors = [ "Colour Developers <[email protected]>" ]
maintainers = [ "Colour Developers <[email protected]>" ]
readme = 'README.rst'
repository = "https://github.com/colour-science/colour"
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",
"data",
"dataset",
"datasets",
"python",
"spectral-data",
"spectral-dataset",
"spectral-datasets"
]
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 :: 2.7",
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering",
"Topic :: Software Development"
]
[tool.poetry.dependencies]
python = "~2.7 || ^3.5"
imageio = "*"
six = "*"
scipy = "*"
"backports.functools_lru_cache" = { version = "*", optional = true }
biblib-simple = { version = "*", optional = true } # Development dependency.
coverage = { version = "*", optional = true } # Development dependency.
coveralls = { version = "*", optional = true } # Development dependency.
flake8 = { version = "*", optional = true } # Development dependency.
invoke = { version = "*", optional = true } # Development dependency.
jupyter = { version = "*", optional = true } # Development dependency.
matplotlib = { version = "*", optional = true }
mock = { version = "*", optional = true } # Development dependency.
networkx = { version = "*", optional = true }
nbformat = { version = "^4", optional = true } # Fixed development dependency for Python 2.7 support only.
nose = { version = "*", optional = true } # Development dependency.
numpy = { version = "*", optional = true }
pandas = { version = "*", optional = true }
pre-commit = { version = "*", optional = true } # Development dependency.
pygraphviz = { version = "*", optional = true }
pytest = { version = "*", optional = true } # Development dependency.
restructuredtext-lint = { version = "*", optional = true } # Development dependency.
sphinx = { version = "*", optional = true } # Development dependency.
sphinx_rtd_theme = { version = "*", optional = true } # Development dependency.
sphinxcontrib-bibtex = { version = "*", optional = true } # Development dependency.
toml = { version = "*", optional = true } # Development dependency.
twine = { version = "*", optional = true } # Development dependency.
yapf = { version = "0.23", optional = true } # Development dependency.
[tool.poetry.dev-dependencies]
biblib-simple = "*"
coverage = "*"
coveralls = "*"
flake8 = "*"
invoke = "*"
jupyter = "*"
mock = "*"
nbformat = "^4"
nose = "*"
pre-commit = "*"
pytest = "*"
restructuredtext-lint = "*"
sphinx = "*"
sphinx_rtd_theme = "*"
sphinxcontrib-bibtex = "*"
toml = "*"
twine = "*"
yapf = "0.23"
[tool.poetry.extras]
development = [
"biblib-simple",
"coverage",
"coveralls",
"flake8",
"invoke",
"jupyter",
"mock",
"nbformat",
"nose",
"pre-commit",
"pytest",
"restructuredtext-lint",
"sphinx",
"sphinx_rtd_theme",
"sphinxcontrib-bibtex",
"toml",
"twine",
"yapf"
]
graphviz = [ "pygraphviz" ]
optional = [ "networkx", "pandas" ]
plotting = [ "backports.functools_lru_cache", "matplotlib" ]
read-the-docs = [
"mock",
"networkx",
"numpy",
"pygraphviz",
"sphinxcontrib-bibtex"
]
[build-system]
requires = [ "poetry>=0.12" ]
build-backend = "poetry.masonry.api"