-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
50 lines (42 loc) · 888 Bytes
/
pyproject.toml
File metadata and controls
50 lines (42 loc) · 888 Bytes
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
[project]
name = "bibx"
description = "Python bibliometric tools."
authors = [
{name = "Core of Science Team", email = "technology@coreofscience.org"},
]
license = "MIT"
readme = "README.md"
keywords = [
"bibliometrics",
"science",
"text mining",
]
dynamic = ["version"]
dependencies = [
"bibtexparser~=1.4.0",
"networkx~=3.0",
"typer[all]~=0.9.0",
"xlsxwriter~=3.2.0",
"types-requests~=2.32.0.20240622",
]
[project.optional-dependencies]
dev = [
"pytest~=7.2.0",
"pre-commit~=2.20.0",
"ruff~=0.3.3",
"mypy~=1.9.0",
]
[project.scripts]
bibx = "bibx.cli:app"
[tool.ruff.lint]
select = ["I", "E", "F", "W"]
ignore = ["E501"]
[tool.mypy]
mypy_path = "./stubs/"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.version]
path = "src/bibx/__init__.py"
[tool.hatch.envs.default]
features = ["dev"]