forked from guillaumegenthial/sequence_tagging
-
Notifications
You must be signed in to change notification settings - Fork 15
/
setup.py
28 lines (27 loc) · 952 Bytes
/
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
from setuptools import setup
setup(name='nerlogparser',
version='0.0.1',
description='Automatic log parser',
long_description='Automatic log parser using named entity recognition in Python',
classifiers=[
'Development Status :: 2 - Pre-Alpha',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python :: 3.5',
],
keywords='named entity recognition, log parser, log forensics',
url='http://github.com/studiawan/nerlogparser/',
author='Guillaume Genthial, Hudan Studiawan',
author_email='[email protected]',
license='Apache',
packages=['nerlogparser'],
entry_points={
'console_scripts': [
'nerlogparser = nerlogparser.nerlogparser:main'
],
},
install_requires=[
'tensorflow==1.4.1',
'nltk'
],
include_package_data=True,
zip_safe=False)