pyproject.toml
507 B · toml · 27 lines
1[project]23name = "carlomitchener"4version = "0.1.0"5license = "MIT"6description = "MrlyMath and friends: one environment for every script in the repo"7requires-python = ">=3.10"8dependencies = [9 "boto3",10 "botocore[crt]",11 "numpy",12 "pillow",13]1415[dependency-groups]1617font = ["brotli", "fonttools", "skia-pathops"]18plots = ["matplotlib"]1920[build-system]2122requires = ["setuptools>=61.0"]23build-backend = "setuptools.build_meta"2425[tool.setuptools.packages.find]2627include = ["mrlypy", "mrlypy.*"]