-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
38 lines (34 loc) · 1.16 KB
/
setup.py
File metadata and controls
38 lines (34 loc) · 1.16 KB
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
from ast import literal_eval
from setuptools import setup
DIR_SRC = 'uniseg'
VERSION = literal_eval(open(DIR_SRC+'/version.py').read())
setup(
name = 'uniseg',
version = VERSION,
author = 'Masaaki Shibata',
author_email = 'mshibata@emptypage.jp',
url = 'https://bitbucket.org/emptypage/uniseg-python',
description = 'Determine Unicode text segmentations',
long_description = open('README').read(),
license = 'MIT',
packages = ['uniseg'],
package_data = {
'uniseg': ['ucd.sqlite3', 'docs/*.html', 'samples/*.py']
},
entry_points = {
'console_scripts': ['uniseg-dbpath = uniseg.db:print_dbpath'],
},
classifiers = [
'Development Status :: 4 - Beta',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Topic :: Text Processing',
],
zip_safe = False,
)