-
Notifications
You must be signed in to change notification settings - Fork 89
/
setup.py
41 lines (32 loc) · 1.04 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
#!/usr/bin/env python
import os
from ner import __version__
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
with open(os.path.join(os.path.dirname(__file__), 'README.md')) as fp:
description = fp.read()
specs = {
'name' : 'ner',
'version' : __version__,
'description' : 'Python client for the Stanford Named Entity Recognizer',
'long_description' : description,
'url' : 'http://github.com/dat/pyner',
'author' : 'Dat Hoang',
'author_email' : '[email protected]',
'keywords' : ['ner', 'stanford named entity recognizer', 'stanford named entity tagger'],
'license' : 'BSD',
'packages' : ['ner'],
'test_suite' : 'tests.all_tests',
'classifiers' : (
'Development Status :: 3 - Alpha',
'Environment :: Console',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
),
}
if __name__=='__main__':
setup(**specs)