forked from PistonY/torch-toolbox
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·24 lines (22 loc) · 858 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
# -*- coding: utf-8 -*-
# Author: [email protected]
from setuptools import setup, find_packages
from torchtoolbox import VERSION
setup(name='torchtoolbox',
version=VERSION,
author='X.Yang',
author_email='[email protected]',
url='https://github.com/PistonY/torch-toolbox',
description='ToolBox to make using Pytorch much easier.',
long_description_content_type="text/markdown",
long_description=open('README.md').read(),
license='BSD 3-Clause',
packages=find_packages(exclude=('*tests*', 'dirty_code')),
zip_safe=True,
classifiers=[
'Programming Language :: Python :: 3',
],
install_requires=[
'numpy', 'tqdm', 'pyarrow', 'six', 'lmdb', 'scikit-learn', 'scipy', 'opencv-python', 'pyyaml', 'tensorboard',
'prettytable', 'transformers'
])