-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
31 lines (27 loc) · 1 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
from setuptools import find_packages
from setuptools import setup
long_description = open('README.md').read()
setup(name='myouji_kenchi',
version='1.0.2dev',
author='Derick Anderson',
author_email='[email protected]',
description='Determine if romanized Japanese names are family names',
url='https://github.com/scouty-inc/myouji-kenchi',
long_description=long_description,
long_description_content_type='text/markdown',
package_dir={'': 'src'},
packages=find_packages('src'),
package_data={'myouji_kenchi': ['data/lexical_data_fst.txt']},
include_package_data=True,
install_requires=[
'numpy',
'openfst>=1.6.6<1.6.7',
'regex',
],
classifiers=(
'Programming Language :: Python :: 3',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Natural Language :: Japanese',
'Topic :: Text Processing :: Linguistic'
))