-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
66 lines (58 loc) · 1.52 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
[tool]
[tool.poetry]
name = "eve_panel"
version = "0.3.28"
homepage = "https://jmosbacher.github.io/eve-panel"
documentation = "https://eve-panel.readthedocs.io"
description = "Top-level package for Eve-Panel."
authors = ["Yossi Mosbacher <joe.mosbacher@gmail.com>"]
readme = "README.rst"
license = "MIT"
classifiers=[
'Development Status :: 2 - Pre-Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
]
packages = [
{ include = "eve_panel" },
{ include = "tests", format = "sdist" },
]
[tool.poetry.dependencies]
python = ">=3.8,<3.11"
eve = "^1.1.3"
panel = "^0.13.0"
httpx = "^0.19"
numpy = "*"
# optional
dask = { optional = true, version = "*" }
hvplot = { optional = true, version = "*" }
[tool.poetry.dev-dependencies]
bumpversion = "*"
coverage = "*"
flake8 = "*"
invoke = "*"
isort = "*"
pylint = "*"
pytest = "*"
sphinx = "*"
tox = "*"
yapf = "*"
nbsphinx = "*"
sphinx-material = "*"
numpydoc = "*"
[tool.poetry.extras]
dask = ["dask[dataframe]"]
plotting = ["hvplot", "xarray"]
full = ["dask[dataframe]", "hvplot", "xarray"]
[tool.dephell.main]
versioning = "semver"
from = {format = "poetry", path = "pyproject.toml"}
to = {format = "setuppy", path = "setup.py"}
[build-system]
requires = ["poetry-core>=1.0.8", "setuptools"]
build-backend = "poetry.core.masonry.api"