-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
27 lines (26 loc) · 1017 Bytes
/
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
from distutils.core import setup
setup(
name = 'ja_sentence',
packages = ['ja_sentence'],
version = '0.0.2',
license='apache-2.0',
description = 'Light-weight sentence tokenizer for Japanese.',
author = 'Rairye',
url = 'https://github.com/Rairye/ja-sentence',
download_url = 'https://github.com/Rairye/ja-sentence/archive/refs/tags/v0.0.2.tar.gz',
keywords = ['Japanese', 'Sentence', 'Tokenizer'],
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: End Users/Desktop',
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.1',
'Programming Language :: Python :: 3.2',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
],
)