-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsetup.py
More file actions
38 lines (34 loc) · 1.54 KB
/
setup.py
File metadata and controls
38 lines (34 loc) · 1.54 KB
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
import os
from setuptools import setup
from setuptools import find_packages
def read(fname):
'''Utility function to read the README file.
'''
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(name='ManTIME',
version='0.1.0',
author='Michele Filannino',
author_email='filannim@cs.man.ac.uk',
description='Temporal Expression Extraction software',
long_description=read('README.md'),
url='https://github.com/filannim/ManTIME',
packages=find_packages(),
install_requires=['nltk==2.0.5',
'jsonrpclib>=0.1.3',
'pexpect>=3.1',
'xmltodict>=0.9.0'],
classifiers=['Development Status :: 3 - Alpha',
'Environment :: Console',
'Intended Audience :: Healthcare Industry',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: BSD License',
'Natural Language :: English',
'Operating System :: Unix',
'Operating System :: MacOS :: MacOS X',
'Programming Language :: Python',
'Programming Language :: Python 2.7',
'Programming Language :: Java',
'Topic :: Scientific/Engineering :: Artificial Intelligence',
'Topic :: Scientific/Engineering :: Information Analysis',
'Topic :: Text Processing :: Linguistic',
'Topic :: Text Processing :: Markup'])