-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
33 lines (30 loc) · 1.5 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
from setuptools import setup, Extension
ext = Extension('habachen._habachen',
sources = ['ext/habachen.c'],
extra_compile_args=[])
setup (name = 'habachen',
version = '0.5.2',
description = 'Yet Another Fast Japanese String Converter',
author = 'Hizuru',
url = 'https://github.com/Hizuru3/python-habachen',
license = 'MIT',
long_description = '''
Habachen provides a fast implementation of Japanese text converters
that support half-width/full-width characters but also hiragana/katakana.
''',
packages = ['habachen'],
package_data = {'habachen': ['py.typed', '__init__.pyi']},
ext_modules = [ext],
classifiers = ['Intended Audience :: Science/Research',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Natural Language :: Japanese',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
'Programming Language :: Python :: 3.13',
'Programming Language :: Python :: Implementation :: CPython',
'Topic :: Text Processing :: Linguistic'],
python_requires = '>=3.8')