-
Notifications
You must be signed in to change notification settings - Fork 10
/
setup.py
39 lines (34 loc) · 1015 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
28
29
30
31
32
33
34
35
36
37
38
39
# Licence GPL
#
# (c) 2019 cod
# coding: utf-8
import setuptools
import pathlib
description = 'A tool to get the katakana reading of an alphabetical string.'
readme_file = pathlib.Path(__file__).parent/'README.md'
with readme_file.open(encoding='utf-8') as f:
readme = f.read()
setuptools.setup(
name='alkana',
version='0.0.3',
url='https://github.com/cod-sushi/alkana.py',
author='cod',
author_email='[email protected]',
license='GPLv2',
python_requires='>=3.0, <4.0',
description=description,
long_description=readme,
long_description_content_type="text/markdown",
packages=setuptools.find_packages(),
classifiers=[
'Development Status :: 3 - Alpha',
'Programming Language :: Python :: 3.6',
'Natural Language :: Japanese',
'License :: OSI Approved :: GNU General Public License v2 (GPLv2)', # noqa
],
entry_points={
'console_scripts': [
'alkana = alkana.console:console',
],
},
)