-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
50 lines (47 loc) · 1.46 KB
/
setup.py
File metadata and controls
50 lines (47 loc) · 1.46 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
39
40
41
42
43
44
45
46
47
48
49
50
import os
from setuptools import setup
# The directory containing this file
HERE = os.path.abspath(os.path.dirname(__file__))
# The text of the README file
with open(os.path.join(HERE, "README.md")) as fid:
README = fid.read()
setup(
name="POSTagger",
version="v0.1.13-beta",
description="A GUI app for semi-automatic POS tagging",
long_description=README,
long_description_content_type="text/markdown",
keywords = "POS Tagger, Part of Speech Tagger",
url="https://github.com/asdoost/POSTagger",
download_url = "https://github.com/asdoost/POSTagger/archive/refs/tags/v0.1.13-beta.tar.gz",
author="Abbas Safardoost",
author_email="a.safardoust@gmail.com",
license="MIT",
classifiers=[
"Development Status :: 4 - Beta",
"Topic :: Text Processing :: Linguistic",
"License :: OSI Approved :: MIT License",
"Operating System :: Unix",
"Operating System :: Microsoft :: Windows",
"Programming Language :: Python :: 3.6"
],
packages=["POSTagger"],
package_dir={"POSTagger": "POSTagger"},
package_data={
"POSTagger": [
"corpora/*.txt",
"imgs/*.png",
"outputs/*",
"projects/*.proj",
"tagsets/*.csv"]
},
entry_points={
"console_scripts": [
"POSTagger=POSTagger.POSTagger:POSTagger",
]
},
install_requires=[
"arabic_reshaper",
"python-bidi"
]
)