Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
lucidrains
GitHub Repository: lucidrains/vit-pytorch
Path: blob/main/setup.py
430 views
1
from setuptools import setup, find_packages
2
3
with open('README.md') as f:
4
long_description = f.read()
5
6
setup(
7
name = 'vit-pytorch',
8
packages = find_packages(exclude=['examples']),
9
version = '1.11.7',
10
license='MIT',
11
description = 'Vision Transformer (ViT) - Pytorch',
12
long_description = long_description,
13
long_description_content_type = 'text/markdown',
14
author = 'Phil Wang',
15
author_email = '[email protected]',
16
url = 'https://github.com/lucidrains/vit-pytorch',
17
keywords = [
18
'artificial intelligence',
19
'attention mechanism',
20
'image recognition'
21
],
22
install_requires=[
23
'einops>=0.7.0',
24
'torch>=1.10',
25
'torchvision'
26
],
27
setup_requires=[
28
'pytest-runner',
29
],
30
tests_require=[
31
'pytest',
32
'torch==2.4.0',
33
'torchvision==0.19.0'
34
],
35
classifiers=[
36
'Development Status :: 4 - Beta',
37
'Intended Audience :: Developers',
38
'Topic :: Scientific/Engineering :: Artificial Intelligence',
39
'License :: OSI Approved :: MIT License',
40
'Programming Language :: Python :: 3.6',
41
],
42
)
43
44