-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
57 lines (55 loc) · 1.06 KB
/
pyproject.toml
File metadata and controls
57 lines (55 loc) · 1.06 KB
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
51
52
53
54
55
56
57
[project]
name = "raffalib"
version = "0.1"
description = "My Python library"
readme = "README.md"
license = "GPL-3.0-or-later"
license-files = ["LICENSE.txt"]
keywords = ["pandas", "polars", "data science", "data wrangling"]
authors = [
{ name = "Raffaele Mancuso", email = "raffaelemancuso532@gmail.com" }
]
requires-python = ">=3.13"
dependencies = [
"humanize>=4.15.0",
"natsort>=8.4.0",
"python-docx>=1.2.0",
"rich>=14.2.0",
"tqdm>=4.67.1",
]
[project.optional-dependencies]
pandas = [
"pandas>=3.0.1",
]
polars = [
"polars>=1.38.1",
"polars-config-meta>=0.3.1",
"polars-permute>=0.1.6",
]
bibliometrics = [
"beautifulsoup4>=4.14.3",
"fake-useragent>=2.2.0",
"pyalex>=0.21",
]
crypto = [
"keepassxc-proxy-client>=0.1.7",
"python-gnupg>=0.5.6",
]
db = [
"sqlalchemy>=2.0.48",
]
dev = [
"ruff>=0.15.5",
]
docs = [
"sphinx>=9.1.0",
"sphinx-autoapi>=3.8.0",
"sphinx-autobuild>=2025.8.25",
"sphinx-rtd-theme>=3.1.0",
]
web = [
"selenium>=4.41.0",
]
[build-system]
requires = ["uv_build"]
build-backend = "uv_build"