-
Notifications
You must be signed in to change notification settings - Fork 6
/
setup.py
32 lines (30 loc) · 1.12 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
import setuptools
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setuptools.setup(
name="gr-nlp-toolkit",
version="0.1.0",
author="nlpaueb",
author_email="p3170148@aueb.gr, p3170039@aueb.gr, spirosbarbakos@gmail.com, eleftheriosloukas@aueb.gr, ipavlopoulos@aueb.gr",
description="A Transformer-based Natural Language Processing Pipeline for Greek",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/nlpaueb/gr-nlp-toolkit",
project_urls={
#"Bug Tracker": "https://github.com/pypa/sampleproject/issues",
},
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Topic :: Text Processing :: Linguistic",
"Natural Language :: Greek"
],
packages=setuptools.find_packages(where=".", exclude="./test_gr_nlp_toolkit"),
python_requires=">=3.9",
install_requires=[
'torch>=2.1.2',
'transformers>=4.11.1',
'huggingface_hub'
]
)