-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
41 lines (36 loc) · 1.01 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
#!/usr/bin/env python
import os
from setuptools import setup
from mrep import __version__
requires = [
'mecab-python3>=1.0.0',
]
def read(name):
return open(os.path.join(os.path.dirname(__file__), name)).read()
setup(
name='mrep',
version=__version__,
description='MREP: morpheme regular expression printer',
long_description=read('README.rst'),
author='Yuya Unno',
author_email='[email protected]',
url='https://github.com/unnonouno/mrep',
packages=['mrep',
],
scripts=[
'scripts/mrep',
],
install_requires=requires,
license='MIT',
test_suite='test',
classifiers = [
'Operating System :: OS Independent',
'Environment :: Console',
'Programming Language :: Python',
'License :: OSI Approved :: MIT License',
'Development Status :: 2 - Pre-Alpha',
'Intended Audience :: Information Technology',
'Intended Audience :: Science/Research',
'Topic :: Utilities',
],
)