-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
56 lines (50 loc) · 1.84 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
44
45
46
47
48
49
50
51
52
53
54
55
56
# coding: utf-8
import os
from setuptools import find_packages, setup
# Include __about__.py.
__dir__ = os.path.dirname(__file__)
about = {}
with open(os.path.join(__dir__, 'baruda', '__about__.py')) as f:
exec(f.read(), about)
with open('README.md') as readme_file:
README = readme_file.read()
with open('HISTORY.md') as history_file:
HISTORY = history_file.read()
# TODO: need a download url to go on pypi
# download_url='https://pypi.org/project/{baruda?}/'
setup(
name='baruda',
version=about['__version__'],
license=about['__license__'],
author=about['__author__'],
author_email=about['__maintainer_email__'],
maintainer=about['__maintainer__'],
maintainer_email=about['__maintainer_email__'],
url='https://github.com/naubull2/baruda',
download_url='https://pypi.org/project/baruda/',
description='Fix and normalize Korean Jamo typos',
long_description_content_type="text/markdown",
long_description=README + '\n\n' + HISTORY,
platforms='any',
packages=find_packages(),
zip_safe=False,
keywords=['Korean', 'Hangul', 'Jamo'],
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: BSD License',
'Natural Language :: Korean',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: Implementation :: CPython',
'Programming Language :: Python :: Implementation :: PyPy',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Software Development :: Localization',
'Topic :: Text Processing :: Linguistic',
],
install_requires=[
'jamo>=0.4.1'
],
)