-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
47 lines (39 loc) · 1.43 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
#! /usr/bin/env python
# coding: utf8
from __future__ import print_function
from pathlib import Path
import setuptools
from pkg_resources import parse_version
assert parse_version(setuptools.__version__) >= parse_version("38.6.0")
def read(fname):
p = Path(__file__).parent / fname
with p.open(encoding="utf-8-sig") as f:
return f.read()
setuptools.setup(
name="tibetan_sort",
version="0.2.0", # also modify tibetan_sort/__init__.py
author="Esukhia development team",
author_email="[email protected]",
description="Tibetan Sorting Tool",
license="Apache2",
keywords="nlp computational_linguistics tibetan sort",
url="https://github.com/Esukhia/tibetan-sort-python",
packages=setuptools.find_packages(),
long_description=read("README.md"),
long_description_content_type="text/markdown",
project_urls={
"Source": "https://github.com/Esukhia/tibetan-sort-python",
"Tracker": "https://github.com/Esukhia/tibetan-sort-python/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",
)