-
Notifications
You must be signed in to change notification settings - Fork 33
/
setup.py
61 lines (59 loc) · 1.8 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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="declutr",
version="0.1.0rc1",
author="John Giorgi",
author_email="[email protected]",
description=("DeCLUTR: Deep Contrastive Learning for Unsupervised Textual Representations"),
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/JohnGiorgi/DeCLUTR",
packages=setuptools.find_packages(),
keywords=[
"universal sentence embeddings",
"contrastive learning",
"natural language processing",
"allennlp",
"pytorch",
"transformers",
"representation learning",
"deep metric learning",
"sentence embeddings",
"sentence similarity",
"semantic similarity",
],
classifiers=[
"Development Status :: 1 - Planning",
"Environment :: Console",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Typing :: Typed",
],
python_requires=">=3.6.1",
install_requires=[
"allennlp>=1.1.0, <1.2.0",
"pytorch-metric-learning>=0.9.98",
"typer>=0.3.2",
"validators>=0.18.2",
],
extras_require={
"dev": [
"black",
"coverage",
"codecov",
"flake8",
"hypothesis",
"pytest",
"pytest-cov",
"mypy",
]
},
)