-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
24 lines (20 loc) · 910 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
from pathlib import Path
from setuptools import setup
THIS_DIR = Path(__file__).resolve().parent
setup(
name="alternationprober",
version="0.0.2",
description="Work for LING 575 - Analysing Neural Language Models, Spring, 2022",
long_description=(THIS_DIR / "README.md").read_text(),
long_description_content_type="text/markdown",
url="https://github.com/kvah/ling-575-analyzing-nn-group/",
package_dir={'': 'src'},
python_requires=">=3.9",
install_requires=["transformers"],
entry_points={
"console_scripts": [
"get_bert_word_embeddings=alternationprober.embeddings.get_bert_word_embeddings:main",
"get_bert_context_word_embeddings=alternationprober.embeddings.get_bert_context_word_embeddings:main",
"run_linear_classifier_experiment=alternationprober.experiments.run_linear_classifier_experiment:main"
]
})