-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
37 lines (32 loc) · 925 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 = "pymetasnap"
version = "0.40.0"
description = "This package allows you to scrape metadata from the Python Package Index"
authors = ["cristian-rincon <cristian.o.rincon.b@gmail.com>"]
license = "MIT"
readme = "README.md"
packages = [{include = "extractor"}]
[tool.poetry.scripts]
pymetasnap = "extractor.main:app"
[tool.poetry.dependencies]
python = "^3.8"
typer = {extras = ["all"], version = ">=0.9,<0.16"}
rich = "^13.4.1"
shellingham = "^1.5.0.post1"
openpyxl = "^3.1.2"
pandas = "^2.0.2"
loguru = "^0.7.0"
requests = "^2.31.0"
toml = "^0.10.2"
ghapi = "^1.0.4"
[tool.poetry.group.dev.dependencies]
black = {version = ">=23.3,<25.0", allow-prereleases = true}
pytest = ">=7.3.1,<9.0.0"
pre-commit = "^3.3.2"
jupyterlab = "^4.0.2"
pytest-xdist = "^3.3.1"
pytest-sugar = ">=0.9.7,<1.1.0"
pytest-cov = ">=4.1,<6.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"