-
Notifications
You must be signed in to change notification settings - Fork 6
/
setup.py
40 lines (38 loc) · 1.05 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
import os
from setuptools import find_packages, setup
with open("README.md", encoding="utf-8") as readme_file:
readme = readme_file.read()
setup(
name='benchmarks-runner',
version='0.1.3',
author="Max Wang",
author_email="max@covar.com",
url="https://github.com/TranslatorSRI/Benchmarks",
description="Translator Benchmarks Runner",
long_description_content_type="text/markdown",
long_description=readme,
# include all config files
package_data={'benchmarks-runner': [
'config/**/*.json',
'config/**/data.tsv',
]},
include_package_data=True,
packages=find_packages(),
install_requires=[
'httpx',
'matplotlib',
'numpy',
'requests',
'tqdm',
],
entry_points={
'console_scripts': [
'benchmarks_eval = '
'benchmarks_runner.cli.eval:main',
'benchmarks_fetch = '
'benchmarks_runner.cli.fetch:main',
'benchmarks_score = '
'benchmarks_runner.cli.score:main',
]
}
)