-
Notifications
You must be signed in to change notification settings - Fork 7
/
setup.py
58 lines (54 loc) · 1.77 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
54
55
56
57
58
"""
Setup script for TRUNAJOD.
This is the setup.py script for TRUNAJOD, to build and package TRUNAJOD.
"""
from distutils.core import setup
long_description = open("README.md", "r", encoding="utf-8").read()
setup(
name="TRUNAJOD",
version="0.1.1b",
license="MIT",
description="A python lib for readability analyses.",
long_description=long_description,
long_description_content_type="text/markdown",
author="Diego Palma",
author_email="[email protected]",
url="https://github.com/dpalmasan/TRUNAJOD2.0",
download_url=(
"https://github.com/dpalmasan/TRUNAJOD2.0/archive/refs/tags/v0.1.1.tar.gz"
),
keywords=[
"NLP",
"readability",
"entity grid",
"linguistics",
"nlp",
"text complexity",
],
packages=["TRUNAJOD"],
package_dir={"": "src"},
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Topic :: Education :: Computer Aided Instruction (CAI)",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Operating System :: POSIX",
"Operating System :: MacOS",
"Operating System :: Unix",
"Operating System :: Microsoft :: Windows",
],
install_requires=[
"spacy>=2.3.2",
],
project_urls={
"Documentation": "https://trunajod20.readthedocs.io/en/latest/",
"Source Code": "https://github.com/dpalmasan/TRUNAJOD2.0",
"Bug Tracker": "https://github.com/dpalmasan/TRUNAJOD2.0/issues",
},
python_requires=">=3.6",
)