forked from murufeng/awesome_lightweight_networks
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
36 lines (35 loc) · 1.06 KB
/
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
33
34
35
36
from setuptools import setup, find_packages
setup(
name = 'light_cnns',
packages = find_packages(),
version = '0.4.2',
license='MIT',
description = 'Implementation of Lightweight Network in Pytorch',
author = 'murufeng',
author_email = '[email protected]',
url = 'https://github.com/murufeng/awesome_lightweight_networks',
keywords = [
'artificial intelligence',
'lightweight neural network',
'image classification',
'image segmentation',
'computer vision',
'Real-Time Networks'
],
install_requires=[
'einops>=0.3',
'torch>=1.4',
'torchvision',
],
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.6',
'Topic :: Scientific/Engineering :: Artificial Intelligence',
'Topic :: Software Development',
'Topic :: Software Development :: Libraries',
'Topic :: Software Development :: Libraries :: Python Modules',
],
)