[project]1name = "pydata-book"2version = "3.0.0"3description = "Code and materials for Python for Data Analysis, 3rd Edition"4requires-python = ">=3.9"5dependencies = [6"numpy",7"pandas==2.0.3",8"matplotlib",9"lxml",10"seaborn",11"statsmodels",12"scipy",13"patsy",14"scikit-learn",15"beautifulsoup4",16"jupyter",17"ipython",18"requests",19"sqlalchemy",20"pytz",21]2223[project.optional-dependencies]24dev = [25"jupyter",26]2728[build-system]29requires = ["setuptools>=61.0"]30build-backend = "setuptools.build_meta"313233