-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
29 lines (28 loc) · 962 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
from setuptools import setup, find_packages
setup(
name='dynamicdl',
version='0.1.1-alpha-1',
packages=find_packages(),
license='Apache License 2.0',
author='Anthony Tong',
author_email='[email protected]',
description='A PyTorch-based dynamic dataloading library',
long_description=open('README.md', encoding='utf-8').read(),
long_description_content_type='text/markdown',
url='https://github.com/ESB-AI-Lab/DynamicDL',
install_requires=[
"opencv-python>=4.6.0,<=4.9.0.80",
"Pillow>=8.0.0,<=10.3.0",
"PyYAML>=5.4.0,<=6.0.1",
"tqdm>=4.1.0,<=4.66.2",
"numpy>=1.18.0,<2.0.0",
"pandas>=1.0.0,<=2.2.2",
"torch>=2.0.0,<=2.3.0",
"torchvision>=0.15.1,<=0.18.0",
"typing-extensions>=4.0.0,<=4.11.0",
"xmltodict>=0.12.0,<=0.13.0",
"jsonpickle>=3.0.0,<=3.1.0",
"matplotlib>=3.6.0,<=3.8.4"
],
include_package_data=True
)