-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsetup.py
More file actions
26 lines (25 loc) · 697 Bytes
/
Copy pathsetup.py
File metadata and controls
26 lines (25 loc) · 697 Bytes
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
# -*- coding:utf-8 -*-
from setuptools import setup
setup(
name = "pyNTCIREVAL",
packages = ["pyNTCIREVAL", "pyNTCIREVAL.metrics"],
version = "0.0.3",
description = "Python version of NTCIREVAL",
author = "Makoto P. Kato",
author_email = "mpkato@slis.tsukuba.ac.jp",
license = "MIT License",
url = "https://github.com/mpkato/pyNTCIREVAL",
entry_points='''
[console_scripts]
pyNTCIREVAL=pyNTCIREVAL.main:cli
''',
install_requires = [
'numpy',
'click'
],
tests_require=['pytest'],
classifiers=[
'Programming Language :: Python :: 3.6',
],
keywords=['information retrieval', 'evaluation']
)