-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
38 lines (37 loc) · 1.15 KB
/
setup.py
File metadata and controls
38 lines (37 loc) · 1.15 KB
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
from setuptools import setup, find_packages
setup(
name="align_test",
version="0.2.0",
package_dir={"": "src"},
packages=find_packages(where="src"),
include_package_data=True,
install_requires=[
"pandas",
"numpy",
"scikit-learn",
"transformers",
"torch",
"gensim",
"nltk",
"tqdm",
"spacy",
"python-dotenv",
"matplotlib",
],
author="Nicholas Duran",
author_email="nicholas.duran@utexas.edu",
description="A package for linguistic alignment analysis in conversational data",
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
url="https://github.com/nickduran/align2-linguistic-alignment",
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Text Processing :: Linguistic",
],
python_requires=">=3.7",
)