forked from alephdata/aleph
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
38 lines (37 loc) · 1.21 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
from setuptools import setup, find_packages
setup(
name='aleph',
version='2.0.0',
description="Document sifting web frontend",
long_description="",
classifiers=[
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Programming Language :: Python",
],
keywords='',
author='Friedrich Lindenberg',
author_email='[email protected]',
url='http://aleph.readthedocs.io',
license='MIT',
packages=find_packages(exclude=['ez_setup', 'examples', 'test']),
namespace_packages=[],
include_package_data=True,
zip_safe=False,
install_requires=[],
test_suite='nose.collector',
entry_points={
'aleph.init': [],
'aleph.analyzers': [
'lang = aleph.analyze.language:LanguageAnalyzer',
'emails = aleph.analyze.regex:EMailAnalyzer',
'phones = aleph.analyze.regex:PhoneNumberAnalyzer',
'corasick = aleph.analyze.corasick_entity:AhoCorasickEntityAnalyzer', # noqa
'polyglot = aleph.analyze.polyglot_entity:PolyglotEntityAnalyzer'
],
'console_scripts': [
'aleph = aleph.manage:main',
]
},
tests_require=['coverage', 'nose']
)