-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
33 lines (31 loc) · 1.09 KB
/
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
26
27
28
29
30
31
32
33
from setuptools import setup, find_packages
with open("README.md", mode="r", encoding="utf-8") as readme_file:
readme = readme_file.read()
setup(
name='income',
version='0.0.2',
author="Nandan Thakur",
author_email="[email protected]",
description='Domain Adaptation for Memory-Efficient Dense Retrieval',
long_description=readme,
long_description_content_type="text/markdown",
license="Apache License 2.0",
url='https://github.com/NThakur20/income',
download_url="https://github.com/NThakur20/income/archive/v0.0.2.zip",
packages=find_packages(),
python_requires='>=3.6',
classifiers=[
'Intended Audience :: Science/Research',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.6',
'Topic :: Scientific/Engineering :: Artificial Intelligence',
],
install_requires=[
'torch >= 1.9.0',
'transformers >= 4.3.3',
'tensorboard >= 2.5.0',
'beir',
'datasets'
],
keywords="Information Retrieval Transformer Networks BERT PyTorch IR NLP deep learning"
)