-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
40 lines (34 loc) · 1 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
[tool.poetry]
name = "pandasaurus"
version = "0.3.8"
description = "Supporting simple queries over ontology annotations in dataframes, using UberGraph queries."
authors = ["Ismail Ugur Bayindir <[email protected]>"]
license = "http://www.apache.org/licenses/LICENSE-2.0"
readme = "README.md"
packages = [{include = "pandasaurus"}]
[tool.poetry.dependencies]
python = "^3.9"
oaklib = "0.5.25"
pandas = "^2.0.1"
rdflib = "^6.3.2"
sphinx = { version = "^7.2.6", optional = true }
sphinx-rtd-theme = { version = "^1.3.0", optional = true }
sphinx-copybutton = { version = "^0.5.2", optional = true }
[tool.poetry.group.dev.dependencies]
pytest = "^7.3.1"
black = "^23.3.0"
isort = "^5.12.0"
flake8 = "^6.0.0"
flake8-black = "^0.3.6"
flake8-isort = "^6.0.0"
pytest-cov = "^4.1.0"
pytest-mock = "^3.10.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.extras]
docs = ["sphinx", "sphinx-rtd-theme", "sphinx-copybutton"]
[tool.black]
line-length = 120
[tool.isort]
profile = "black"