-
Notifications
You must be signed in to change notification settings - Fork 37
Expand file tree
/
Copy pathpyproject.toml
More file actions
59 lines (47 loc) · 1.1 KB
/
pyproject.toml
File metadata and controls
59 lines (47 loc) · 1.1 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
58
59
[project]
name = "pythonplot"
version = "0.1.0"
description = "An Introduction to Python Plotting for Exploratory Data Analysis"
readme = "README.md"
requires-python = ">=3.11"
dependencies = [
# Core Jupyter/IPython
"ipython>=8.12",
"notebook>=7.0",
"jupyter>=1.0",
# Data manipulation
"pandas>=2.0",
# Plotting libraries
"matplotlib>=3.7",
"seaborn>=0.13",
"plotnine>=0.13",
"plotly>=5.24",
"altair>=5.0",
"vl-convert-python>=1.0", # Required for Altair PNG export
# Image rendering
"kaleido>=1.0", # v1+ requires Chrome
"pillow>=10.0",
"selenium>=4.15",
# Statistical tools
"statsmodels>=0.14",
"scikit-misc>=0.3",
# R integration
"rpy2>=3.5",
# Template rendering
"jinja2>=3.1",
"jinja2-highlight>=0.6",
"markdown>=3.5",
# Utilities
"psutil>=5.9",
"tzlocal>=5.0",
"simplegeneric>=0.8",
# Cloud (if needed for deployment)
"boto3>=1.28",
# Testing
"pytest>=7.4",
]
[dependency-groups]
dev = []
[tool.pytest.ini_options]
testpaths = ["tests"]
python_files = ["test_*.py"]