Files
vit-pytorch/setup.py

43 lines
1.0 KiB
Python
Raw Normal View History

2020-10-04 12:34:44 -07:00
from setuptools import setup, find_packages
2024-04-17 20:51:30 +05:30
with open('README.md') as f:
long_description = f.read()
2020-10-04 12:34:44 -07:00
setup(
name = 'vit-pytorch',
2020-10-11 00:06:26 -07:00
packages = find_packages(exclude=['examples']),
2024-10-31 06:48:24 -07:00
version = '1.8.7',
2020-10-04 12:34:44 -07:00
license='MIT',
description = 'Vision Transformer (ViT) - Pytorch',
2024-04-17 20:51:30 +05:30
long_description=long_description,
long_description_content_type = 'text/markdown',
2020-10-04 12:34:44 -07:00
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'
2020-10-04 12:34:44 -07:00
],
2021-12-22 09:13:31 -08:00
setup_requires=[
'pytest-runner',
],
tests_require=[
2022-10-29 11:44:17 -07:00
'pytest',
2024-08-20 15:35:04 -07:00
'torch==2.4.0',
'torchvision==0.19.0'
2021-12-22 09:13:31 -08:00
],
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
)