-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
44 lines (41 loc) · 1.14 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
#!/usr/bin/env python3
from setuptools import setup, find_packages
with open('README.md') as f:
readme = f.read()
setup(
name='aces',
version='1.0.0',
author='Nikita Moghe, Liane Guillou, Chantal Amrhein',
description='a tool to create and score adversarial translation hypothesis pairs and evaluate metrics',
long_description=readme,
packages=[
'aces',
],
install_requires=[
'jsonargparse',
'names',
'pandas',
'pytest',
'pint',
'quantulum3',
'sacrebleu',
'spacy',
'textdistance',
'unbabel-comet',
],
url='https://github.com/nikitacs16/build-it-break-it-22',
classifiers=[
'Programming Language :: Python :: 3.8',
'License :: OSI Approved :: MIT License',
'Operating System :: POSIX :: Linux',
],
entry_points={
'console_scripts': [
'aces-score = aces.cli.score:score',
'aces-eval = aces.cli.evaluate:evaluate',
],
},
python_requires='>=3.8',
license='MIT',
)