-
Notifications
You must be signed in to change notification settings - Fork 27
/
setup.py
25 lines (24 loc) · 776 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
from setuptools import setup, find_packages
setup(
name = 'pixel-level-contrastive-learning',
packages = find_packages(),
version = '0.1.1',
license='MIT',
description = 'Pixel-Level Contrastive Learning',
author = 'Phil Wang',
author_email = '[email protected]',
url = 'https://github.com/lucidrains/pixel-level-contrastive-learning',
keywords = ['self-supervised learning', 'artificial intelligence'],
install_requires=[
'einops',
'torch>=1.6',
'kornia>=0.4.0'
],
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Topic :: Scientific/Engineering :: Artificial Intelligence',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.6',
],
)