-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
32 lines (27 loc) · 794 Bytes
/
setup.py
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
from setuptools import setup, find_packages
VERSION = '0.0.1'
setup_info = dict(
name='lirfu_pyutils',
version=VERSION,
author='Juraj Fulir',
author_email='[email protected]',
url='https://github.com/lirfu/lirfu_pyutils',
description='A Python toolkit of common utils.',
long_description='lirfu_pyutils contains a bunch of tools used for configurable experiment tracking, advanced logging, elegant data loading and plotting and much more.',
license='MIT',
zip_safe=True,
packages=find_packages(),
install_requires=[
'numpy>=1.22.3',
'matplotlib>=3.2.2',
'Pillow>=9.1.0',
'torch>=1.11.0',
'torchvision>=0.12.0',
'tqdm>=4.64.0',
'trimesh>=3.12.0',
'opencv-python>=4.5.5.64',
'pyyaml>=6.0',
'psutil>=5.9.0'
]
)
setup(**setup_info)