mirror of
https://github.com/lucidrains/vit-pytorch.git
synced 2025-12-30 08:02:29 +00:00
39 lines
959 B
Python
39 lines
959 B
Python
from setuptools import setup, find_packages
|
|
|
|
setup(
|
|
name = 'vit-pytorch',
|
|
packages = find_packages(exclude=['examples']),
|
|
version = '1.5.3',
|
|
license='MIT',
|
|
description = 'Vision Transformer (ViT) - Pytorch',
|
|
long_description_content_type = 'text/markdown',
|
|
author = 'Phil Wang',
|
|
author_email = 'lucidrains@gmail.com',
|
|
url = 'https://github.com/lucidrains/vit-pytorch',
|
|
keywords = [
|
|
'artificial intelligence',
|
|
'attention mechanism',
|
|
'image recognition'
|
|
],
|
|
install_requires=[
|
|
'einops>=0.7.0',
|
|
'torch>=1.10',
|
|
'torchvision'
|
|
],
|
|
setup_requires=[
|
|
'pytest-runner',
|
|
],
|
|
tests_require=[
|
|
'pytest',
|
|
'torch==1.12.1',
|
|
'torchvision==0.13.1'
|
|
],
|
|
classifiers=[
|
|
'Development Status :: 4 - Beta',
|
|
'Intended Audience :: Developers',
|
|
'Topic :: Scientific/Engineering :: Artificial Intelligence',
|
|
'License :: OSI Approved :: MIT License',
|
|
'Programming Language :: Python :: 3.6',
|
|
],
|
|
)
|