-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
36 lines (33 loc) · 1.02 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
[build-system]
requires = ["flit_core >=2,<4"]
build-backend = "flit_core.buildapi"
[tool.flit.metadata]
module = "refpapers"
author = "Stig-Arne Grönroos"
author-email = "[email protected]"
classifiers = [ "License :: OSI Approved :: MIT License",
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Topic :: Scientific/Engineering", ]
requires = [
"Levenshtein==0.20.8",
"PyYAML==6.0",
"Unidecode==1.3.6",
"arxiv==1.4.7",
"bibtexparser==1.2.0",
"click==8.1.3",
"crossrefapi==1.5.0",
"delegator.py==0.1.1",
"prompt-toolkit==3.0.19",
"pydantic==1.10.9",
"rich==13.4.1",
"scholarly==1.7.11",
"whoosh==2.7.4",
]
[tool.flit.scripts]
refpapers = "refpapers:cli"
[tool.pytest.ini_options]
addopts = "--flake8 -v --cov=refpapers --cov-report html --mypy --ignore-glob docs/**"
flake8-max-line-length = "120"