-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpyproject.toml
More file actions
31 lines (26 loc) · 1.26 KB
/
pyproject.toml
File metadata and controls
31 lines (26 loc) · 1.26 KB
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
[build-system]
requires = ['setuptools>=61.0']
build-backend = 'setuptools.build_meta'
[project]
name = 'mercury-graph'
version = '3.2.6'
description = 'mercury-graph offers graph analytics capabilities with a technology-agnostic API'
license = {file = "LICENSE"}
requires-python = '>=3.8'
classifiers = ['Programming Language :: Python :: 3',
'License :: OSI Approved :: Apache Software License',
'Operating System :: OS Independent']
keywords = ['graph', 'embedding', 'graph embedding', 'graph exploration', 'graph metrics', 'graph visualization']
authors = [{name = 'Mercury Team', email = 'mercury.group@bbva.com'}]
readme = 'README.md'
dependencies = ['numpy', 'pandas', 'scipy', 'networkx', 'scikit-learn', 'anywidget', 'traitlets']
[project.optional-dependencies]
dev = ['pytest', 'coverage', 'flake8', 'graphframes-latest', 'pyspark', 'matplotlib', 'seaborn', 'pyyaml', 'setuptools>=61.0', 'ipywidgets', 'pyvis']
doc = ['mkdocs', 'mkdocstrings[python]', 'mkdocs-material', 'mkdocs-minify-plugin==0.5.0', 'mkdocs-exclude', 'nbconvert', 'pyyaml']
[tool.setuptools]
include-package-data = true
[tool.setuptools.packages.find]
include = ['mercury*', 'tutorials*']
exclude = ['docker', 'unit_tests']
[tool.pytest.ini_options]
testpaths = ["unit_tests"]