-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·46 lines (43 loc) · 1.7 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
45
#!/usr/bin/python
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name='bilm',
version='0.1.post5',
url='http://github.com/allenai/bilm-tf',
packages=setuptools.find_packages(),
tests_require=[],
zip_safe=False,
entry_points='',
description='Tensorflow implementation of contextualized word representations from bi-directional language models',
long_description=long_description,
long_description_content_type="text/markdown",
license='Apache License 2.0',
python_requires='>=3.5',
install_requires=[
'h5py',
],
classifiers=[
'License :: OSI Approved :: Apache Software License',
'Operating System :: OS Independent',
'Intended Audience :: Developers',
'Intended Audience :: Education',
'Intended Audience :: Science/Research',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Topic :: Scientific/Engineering',
'Topic :: Scientific/Engineering :: Mathematics',
'Topic :: Scientific/Engineering :: Artificial Intelligence',
'Topic :: Scientific/Engineering :: Information Analysis',
'Topic :: Software Development',
'Topic :: Software Development :: Libraries',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Text Processing',
],
keywords='bilm elmo nlp embedding',
author='Matthew E. Peters, Mark Neumann, Mohit Iyyer, Matt Gardner, Christopher Clark, Kenton Lee, Luke Zettlemoyer',
author_email='allennlp-contact@allenai.org',
maintainer='Matthew Peters',
)