-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathsetup.py
31 lines (30 loc) · 883 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
import sys
from setuptools import find_packages, setup
install_requires = [
'numpy>=1.11.1',
'tensorboardX==1.7',
'prettytable',
'Pillow',
'albumentations==0.4.2'
]
setup(
name='simplecv',
version='0.3.4',
description='Simplify training, evaluation, prediction in Pytorch',
keywords='computer vision using pytorch 1.0',
packages=find_packages(),
classifiers=[
'Development Status :: 4 - Beta',
'License :: OSI Approved :: Apache Software License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3.6',
'Topic :: Utilities',
],
url='https://github.com/Z-Zheng/simplecv.git',
author='Zhuo Zheng',
author_email='zhuozheng_2017@163.com',
license='MIT',
setup_requires=[],
tests_require=[],
install_requires=install_requires,
zip_safe=False)