-
Notifications
You must be signed in to change notification settings - Fork 14
/
setup.py
37 lines (30 loc) · 1.07 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
from setuptools import setup
with open('version.txt', 'r') as v:
version = v.readline().strip()
with open('README.md', 'r') as r:
readme = r.read()
with open('requirements.txt', 'r') as r:
requirements = list(x.strip() for x in r)
setup(name='lmchallenge',
version=version,
description='LM Challenge'
' - A library & tools to evaluate predictive language models.',
long_description=readme,
long_description_content_type="text/markdown",
url='https://github.com/Microsoft/LMChallenge',
author='Microsoft Corporation',
author_email='swiftkey-deep@service.microsoft.com',
license='MIT',
packages=['lmchallenge', 'lmchallenge.core'],
include_package_data=True,
install_requires=requirements,
entry_points='''
[console_scripts]
lmc=lmchallenge:cli
lmc-diff=lmchallenge.diff:cli
lmc-grep=lmchallenge.grep:cli
lmc-pretty=lmchallenge.pretty:cli
lmc-run=lmchallenge.run:cli
lmc-stats=lmchallenge.stats:cli
lmc-validate=lmchallenge.validate:cli
''')