forked from ubergrape/pyspotlight
-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathsetup.py
49 lines (43 loc) · 1.39 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
#!/usr/bin/env python
# coding: utf-8
from setuptools import setup
from setuptools import find_packages
from io import open
classifiers = [
'Intended Audience :: Developers',
'Operating System :: OS Independent',
'Topic :: Software Development :: Libraries',
'Environment :: Web Environment',
'License :: OSI Approved :: BSD License',
'Development Status :: 5 - Production/Stable',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
]
requires = [
'requests~=2.10',
]
tests_require = [
'nose2~=0.6',
]
with open('README.rst', 'r', encoding='utf-8') as f:
readme = f.read()
with open('HISTORY.rst', 'r', encoding='utf-8') as f:
history = f.read()
setup(name='pyspotlight',
version='0.7.2',
license='BSD',
url='https://github.com/aolieman/pyspotlight',
author='Luis Nell',
author_email='[email protected]',
maintainer='Alex Olieman',
maintainer_email='[email protected]',
packages=find_packages(),
description='Python interface to the DBpedia Spotlight REST API',
long_description=readme + '\n\n' + history,
keywords=['dbpedia spotlight', 'semantic annotation', 'entity linking'],
classifiers=classifiers,
install_requires=requires,
tests_require=tests_require,
test_suite='nose2.collector.collector',
)