-
Notifications
You must be signed in to change notification settings - Fork 17
/
setup.py
53 lines (51 loc) · 2.05 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
from setuptools import setup, find_packages
with open("README.md", "r", encoding="utf-8") as readme_file:
README = readme_file.read()
setup(
name="vngrs-nlp",
version="0.2.4",
description="Turkish NLP Tools developed by VNGRS.",
long_description=README,
long_description_content_type="text/markdown",
author="Meliksah Turker",
author_email="[email protected]",
license="GNU Affero General Public License v3.0",
classifiers=[
"Development Status :: 3 - Alpha",
# Indicate who your project is intended for
"Intended Audience :: Developers",
"Intended Audience :: Education",
"Intended Audience :: Science/Research",
"Intended Audience :: Information Technology",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Scientific/Engineering :: Information Analysis",
"Topic :: Text Processing",
"Topic :: Text Processing :: Linguistic",
"Topic :: Software Development",
"Topic :: Software Development :: Libraries",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11"
],
project_urls={
"Homepage": "https://github.com/vngrs-ai/vnlp",
"Documentation": "https://vnlp.readthedocs.io/en/latest/",
"Website": "https://vnlp.io",
},
packages=find_packages(exclude=["turkish_embeddings"]),
include_package_data=True,
install_requires=[
'tensorflow<2.6.0; python_version < "3.8"',
'tensorflow>=2.6,<2.16; python_version >= "3.8"',
"regex",
"requests",
"sentencepiece",
],
extras_require={"extras": ["gensim", "spacy"], "develop": ["pre-commit", "pytest"]},
entry_points={"console_scripts": ["vnlp=vnlp.bin.vnlp:main"]},
)