forked from DQinYuan/chinese_province_city_area_mapper
-
Notifications
You must be signed in to change notification settings - Fork 38
/
setup.py
43 lines (39 loc) · 1.33 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
# -*- coding: utf-8 -*-
from codecs import open
from setuptools import setup, find_packages
with open('README.md', 'r', encoding='utf-8') as f:
readme = f.read()
setup(
name='addressparser',
version="0.2.4",
description='Chinese Address Parser and Extraction Tool,Chinese Province, City and Area Recognition Utilities',
long_description=readme,
long_description_content_type='text/markdown',
author='XuMing',
author_email='[email protected]',
url='https://github.com/shibing624/addressparser',
license="MIT",
classifiers=[
'Intended Audience :: Developers',
'Operating System :: OS Independent',
'Natural Language :: Chinese (Simplified)',
'Natural Language :: Chinese (Traditional)',
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Topic :: Text Processing',
'Topic :: Text Processing :: Indexing',
'Topic :: Text Processing :: Linguistic',
],
keywords='NLP,Simplified Chinese,Chinese geographic information',
install_requires=[
"jieba",
"pandas",
],
packages=find_packages(exclude=['tests']),
package_dir={'addressparser': 'addressparser'},
package_data={
'addressparser': ['*.*'],
},
test_suite='tests',
)