-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
38 lines (33 loc) · 1020 Bytes
/
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
[tool.poetry]
name = "thesis-tracker"
version = "0.1.0"
description = "A Python-based project for collecting and analyzing metadata from French academic theses."
authors = ["Pierre Hanne <[email protected]>"]
readme = "README.md"
license = "MIT"
repository = "https://github.com/pierrehanne/thesis-tracker"
keywords = ["theses", "metadata", "academic", "NLP", "data-collection"]
classifiers = [
"License :: OSI Approved :: MIT License",
"Programming Language :: Python"
]
[tool.poetry.dependencies]
python = "^3.11"
pandas = "^2.2.2"
requests = ">=2.25.1,<3.0"
[tool.poetry.dev-dependencies]
pytest = "^8.3.3"
pytest-cov = "^5.0.0"
flake8 = "^7.1.1"
black = "^24.8.0"
mypy = "^1.4.0"
isort = "^5.12.0"
bandit = "^1.7.0"
pre-commit = "^3.8.0"
[tool.poetry.group.audit.dependencies]
safety = "^2.3.5"
[tool.poetry.extras]
dev = ["pytest", "flake8", "black", "mypy", "isort", "bandit", "pytest-cov", "pre-commit"]
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"