-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
37 lines (31 loc) · 1010 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
[tool.poetry]
name = "pubscraper"
version = "0.7.2"
description = "A tool designed to pull publication information from various publishers associated with a given author name"
authors = ["Magret Adekunle <[email protected]>", "Joseph Hendrix <[email protected]"]
readme = "README.md"
packages = [{include = "pubscraper"}]
[tool.poetry.dependencies]
python = "^3.12"
requests = "^2.32.3"
click = "^8.1.7"
click-loglevel = "^0.5.0"
openpyxl = "^3.1.5"
python-dotenv = "^1.0.1"
tablib = {extras = ["all"], version = "^3.7.0"}
python-dateutil = "^2.9.0.post0"
[tool.poetry.scripts]
pubscraper = "pubscraper.main:main"
[tool.poetry.group.dev.dependencies]
pytest = "^8.3.4"
responses = "^0.25.3"
pytest-cov = "^6.0.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.pytest.ini_options]
minversion = "6.0"
pythonpath = ["pubscraper/APIClasses"]
testpaths = ["tests"]
[tool.poetry_bumpversion.file."pubscraper/version.py"]
[tool.poetry_bumpversion.file.".env"]