-
Notifications
You must be signed in to change notification settings - Fork 7
/
setup.cfg
63 lines (53 loc) · 1.15 KB
/
setup.cfg
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
[metadata]
name = ipyradiant
description = Jupyter Widgets for working with RDF graphs
long_description = file: README.md
long_description_content_type = text/markdown
url = https://github.com/jupyrdf/ipyradiant
author = ipyradiant Contributors
author_email = [email protected]
license = BSD-3-Clause
keywords =
Interactive
Language Server
LSP
RDF
license_file = LICENSE
classifiers =
Framework :: Jupyter
Intended Audience :: Developers
Intended Audience :: Information Technology
License :: OSI Approved :: BSD License
Programming Language :: Python
[options]
python_requires = >=3.9,<3.10
package_dir =
= src
packages = find:
include_package_data = True
zip_safe = False
install_requires =
bokeh
datashader
holoviews
ipycytoscape >=1.2
ipywidgets >=7.6,<8
networkx >=2
pandas
rdflib >=6.0
scikit-image
[options.packages.find]
where =
src
[options.extras_require]
# a known-good jupyterlab 3 combination
lab3 =
jupyterlab ==3.*
ipycytoscape >=1.2.0
pyviz_comms >=1.0.3
[flake8]
max-line-length = 88
ignore = E203, E501, W503
[isort]
profile = black
multi_line_output = 3