forked from apdavison/fairgraph
-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpyproject.toml
More file actions
62 lines (55 loc) · 1.2 KB
/
pyproject.toml
File metadata and controls
62 lines (55 loc) · 1.2 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
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
[project]
name = "fairgraph"
version = "0.13.3"
description = "Python API for the EBRAINS Knowledge Graph"
readme = "README.md"
authors = [
{ name="Andrew P. Davison", email="andrew.davison@cnrs.fr" }
]
requires-python = ">=3.9"
license = "Apache-2.0"
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering",
"Programming Language :: Python :: 3"
]
keywords = ["ebrains", "hbp", "metadata", "electrophysiology", "knowledge-graph"]
dependencies=[
"ebrains-kg-core>=0.9.20",
"openminds>=0.5.1",
"python-dateutil>=2.0",
"tabulate>=0.8.0",
"requests>=2.20.0"
]
[project.optional-dependencies]
dev = [
"pytest",
"pytest-cov",
"pytest-mock",
"flake8",
"coverage",
"build",
"setuptools",
"wheel",
"sphinx",
"sphinxawesome_theme",
"black",
"twine"
]
docs = [
"sphinx",
"sphinxawesome_theme"
]
[project.urls]
"Homepage" = "https://github.com/HumanBrainProject/fairgraph"
[tool.setuptools.packages.find]
include = ["fairgraph*"]
[build-system]
requires = [
"setuptools",
"wheel",
]
build-backend = "setuptools.build_meta"
[tool.black]
line-length = 119