-
Notifications
You must be signed in to change notification settings - Fork 12
/
setup.py
executable file
·61 lines (51 loc) · 1.93 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
59
60
61
#! /usr/bin/env python
# -*- coding: utf8 -*-
from __future__ import print_function
import re
from pathlib import Path
import setuptools
from pkg_resources import parse_version
assert parse_version(setuptools.__version__) >= parse_version("38.6.0")
def get_version(prop, project):
project = Path(__file__).parent / project / "__init__.py"
result = re.search(
r'{}\s*=\s*[\'"]([^\'"]*)[\'"]'.format(prop), project.read_text()
)
return result.group(1)
def read(fname):
p = Path(__file__).parent / fname
with p.open(encoding="utf-8") as f:
return f.read()
setuptools.setup(
name="pybo",
version=get_version("__version__", "pybo"), # edit version in pybo/__init__.py
author="Esukhia development team",
author_email="esukhiadev@gmail.com",
description="Python utils for processing Tibetan",
license="Apache2",
keywords="nlp computational_linguistics search ngrams language_models linguistics toolkit tibetan",
url="https://github.com/Esukhia/pybo",
packages=setuptools.find_packages(),
long_description=read("README.md"),
long_description_content_type="text/markdown",
project_urls={
"Source": "https://github.com/Esukhia/pybo",
"Tracker": "https://github.com/Esukhia/pybo/issues",
},
classifiers=[
"Development Status :: 3 - Alpha",
"Topic :: Text Processing :: Linguistic",
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: Apache Software License",
"Natural Language :: Tibetan",
],
python_requires=">=3.6",
install_requires=["botok>=0.8.2", "pyyaml", "click", "pyewts", "bordr", "tibetan_sort", "pytest"],
tests_require=["pytest"],
entry_points={
"console_scripts": ["bo=pybo.cli:cli"] # command=package.module:function
},
)