-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
50 lines (46 loc) · 1.38 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
import os
from setuptools import setup, find_packages
def read(*paths):
with open(os.path.join(*paths), 'r') as f:
return f.read()
requirements = [
"regex",
"tha",
"khmercut",
"khmerpronounce",
]
setup(
name='pykhmernlp',
version='0.0.18',
python_requires=">=3.7",
packages=find_packages(exclude=["tests", "tests.*"]),
package_data={
'pykhmernlp': [
'corpus/icu_words.txt',
'corpus/english_words.txt',
'corpus/khmer_dictionary.tsv',
'corpus/english_dictionary.tsv',
'address/address_data/phum.tsv',
'address/address_data/khum.tsv',
'address/address_data/srok.tsv',
'address/address_data/province.txt',
],
},
include_package_data=True,
zip_safe=False,
url='https://github.com/MetythornPenn/pykhmernlp.git',
license='Apache Software License 2.0',
author = 'Metythorn Penn',
author_email = '[email protected]',
keywords='pykhmernlp',
description='Collection of Khmer language toolkits',
install_requires=requirements,
long_description=(read('README.md')),
long_description_content_type='text/markdown',
classifiers= [
'Natural Language :: English',
'License :: OSI Approved :: Apache Software License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3',
],
)