forked from BlueBrain/citation-graph
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
76 lines (67 loc) · 1.37 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
67
68
69
70
71
72
73
74
75
76
[build-system]
requires = ["setuptools"]
[project]
name = "citations"
authors = [
{name = "Blue Brain Project, EPFL"}
]
description = "Tools for analysing Blue Brain citations"
readme = "README.md"
requires-python = ">=3.10"
dynamic = ["version"]
dependencies = [
"httpx",
"pandas",
"tqdm",
"pydantic",
"openai",
"asyncio",
"aiohttp",
"python-dotenv",
"scikit-learn",
"neo4j",
"serpapi",
"pyyaml"
]
[project.optional-dependencies]
dev = [
"black==24.4.2",
"flake8==7.1.1",
"flake8-builtins==2.1.0",
"flake8-bugbear==22.10.27",
"flake8-comprehensions==3.10.1",
"flake8-docstrings==1.6.0",
"toml-sort==0.23.1",
"isort==5.12.0",
"mccabe==0.7.0",
"pycodestyle==2.12.1",
"pyflakes==3.2.0",
"pytest==8.2.1",
"pytest_httpx",
"pytest-cov",
"types-PyYAML",
"types-requests",
"types-aiofiles",
"validators",
"pandas-stubs",
"types-tqdm",
"mypy"
]
[project.scripts]
gather_articles = "citations.scripts.gather_articles:main"
gather_authors = "citations.scripts.gather_authors:main"
[tool.black]
line-length = 79
preview = true
[tool.isort]
profile = "black"
line_length = 79
[tool.pytest.ini_options]
addopts = "--cov=src --cov-report=html --cov-config=.coveragerc"
[tool.setuptools.dynamic]
version = {attr = "citations.__version__"}
[tool.setuptools.packages.find]
where = ["src"]
namespaces = false
[tool.tomlsort]
in_place = true