-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
34 lines (33 loc) · 743 Bytes
/
pyproject.toml
File metadata and controls
34 lines (33 loc) · 743 Bytes
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
[build-system]
requires = [
"setuptools>=61",
"wheel",
"numpy<2" # ensure numpy is present in the isolated build env
]
build-backend = "setuptools.build_meta"
[project]
name = "py_utils"
version = "0.1.0"
description = "A few utility functions for Robotics, Computer Vision, Machine Learning"
readme = "README.md"
license = {file = "LICENSE"}
authors = [
{name = "Chad Lin"},
{email = "chun-jung.lin@adelaide.edu.au"}
]
urls = { "Homepage" = "https://github.com/ChadLin9596/python_utils" }
requires-python = ">=3.7"
dependencies = [
"dill",
"lzf",
"matplotlib",
"numpy<2",
"opencv-python<4.12.0.88",
"pandas",
"Pillow",
"requests",
"scipy",
"scikit-image",
"torch",
"torchvision"
]