-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathsetup.py
executable file
·53 lines (45 loc) · 1.44 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
46
47
48
49
50
51
52
53
'''
Setup for Tagme API Wrapper.
'''
import codecs
from os import path
from setuptools import setup
HERE = path.abspath(path.dirname(__file__))
with codecs.open(path.join(HERE, 'README.rst'), encoding='utf-8') as f:
LONG_DESCRIPTION = f.read()
setup(
name='tagme',
version='0.1.3',
description='Official TagMe API wrapper for Python',
long_description=LONG_DESCRIPTION,
url='https://github.com/marcocor/tagme-python',
author='Marco Cornolti',
author_email='cornolti@di.unipi.it',
license='Apache',
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Intended Audience :: Information Technology',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: Apache Software License',
'Operating System :: OS Independent',
'Topic :: Scientific/Engineering :: Information Analysis',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Text Processing :: Linguistic',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
],
keywords='entity-linking nlp tagme api',
packages=['tagme'],
install_requires=[
'future',
'python-dateutil',
'requests',
'six',
],
extras_require={
'test': [],
},
)