2020-10-04 12:34:44 -07:00
|
|
|
from setuptools import setup, find_packages
|
|
|
|
|
|
|
|
|
|
setup(
|
|
|
|
|
name = 'vit-pytorch',
|
2020-10-11 00:06:26 -07:00
|
|
|
packages = find_packages(exclude=['examples']),
|
2022-03-23 10:42:35 -07:00
|
|
|
version = '0.29.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=[
|
2022-03-22 13:58:00 -07:00
|
|
|
'einops>=0.4.1',
|
2020-10-04 12:34:44 -07:00
|
|
|
'torch>=1.6',
|
2021-05-02 14:00:36 -07:00
|
|
|
'torchvision'
|
2020-10-04 12:34:44 -07:00
|
|
|
],
|
2021-12-22 09:13:31 -08:00
|
|
|
setup_requires=[
|
|
|
|
|
'pytest-runner',
|
|
|
|
|
],
|
|
|
|
|
tests_require=[
|
|
|
|
|
'pytest'
|
|
|
|
|
],
|
2020-10-04 12:34:44 -07:00
|
|
|
classifiers=[
|
|
|
|
|
'Development Status :: 4 - Beta',
|
|
|
|
|
'Intended Audience :: Developers',
|
|
|
|
|
'Topic :: Scientific/Engineering :: Artificial Intelligence',
|
|
|
|
|
'License :: OSI Approved :: MIT License',
|
|
|
|
|
'Programming Language :: Python :: 3.6',
|
|
|
|
|
],
|
2020-10-11 00:06:26 -07:00
|
|
|
)
|