forked from reema-dass26/nlp_project-2022WS
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
27 lines (26 loc) · 806 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
26
27
from setuptools import find_packages, setup
setup(
name="tuwnlpie",
version="0.0.1",
description="Project template for Natural Language Processing and Information Extraction course, 2022WS",
author="Adam Kovacs",
author_email="[email protected]",
license="MIT",
install_requires=[
"nltk==3.7",
"numpy==1.23.3",
"torch==1.12.1",
"pandas==1.5.0",
"scikit-learn==1.1.2",
],
packages=find_packages(),
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Education",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
],
zip_safe=False,
)