2020-10-04 12:34:44 -07:00
|
|
|
from setuptools import setup, find_packages
|
|
|
|
|
|
|
|
|
|
setup(
|
|
|
|
|
name = 'vit-pytorch',
|
|
|
|
|
packages = find_packages(),
|
2020-10-10 12:08:42 -07:00
|
|
|
version = '0.2.0',
|
2020-10-04 12:34:44 -07:00
|
|
|
license='MIT',
|
|
|
|
|
description = 'Vision Transformer (ViT) - Pytorch',
|
|
|
|
|
author = 'Phil Wang',
|
|
|
|
|
author_email = 'lucidrains@gmail.com',
|
|
|
|
|
url = 'https://github.com/lucidrains/vit-pytorch',
|
|
|
|
|
keywords = [
|
|
|
|
|
'artificial intelligence',
|
|
|
|
|
'attention mechanism',
|
|
|
|
|
'image recognition'
|
|
|
|
|
],
|
|
|
|
|
install_requires=[
|
|
|
|
|
'torch>=1.6',
|
|
|
|
|
'einops>=0.3'
|
|
|
|
|
],
|
|
|
|
|
classifiers=[
|
|
|
|
|
'Development Status :: 4 - Beta',
|
|
|
|
|
'Intended Audience :: Developers',
|
|
|
|
|
'Topic :: Scientific/Engineering :: Artificial Intelligence',
|
|
|
|
|
'License :: OSI Approved :: MIT License',
|
|
|
|
|
'Programming Language :: Python :: 3.6',
|
|
|
|
|
],
|
|
|
|
|
)
|