-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
48 lines (46 loc) · 1.58 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
#!/usr/bin/env python
from setuptools import find_packages, setup
setup(name='UPOL-Search-Engine',
version='0.8-dev',
description='UPOL Search engine is search engine for upol.cz domain, \
topic of Master thesis on Department of Computer Science UPOL',
author='Tomas Mikula',
author_email='[email protected]',
license='MIT',
url='https://github.com/UPOLSearch/UPOL-Search-Engine',
packages=find_packages(),
package_data={
'upol_search_engine': ['config-default.ini',
'upol_search_engine/templates/search/*',
'upol_search_engine/templates/info/*',
'upol_search_engine/templates/error/*',
'upol_search_engine/static/css/*',
'upol_search_engine/static/js/*',
'upol_search_engine/static/fonts/*',
'upol_search_engine/static/images/*.png'],
},
install_requires=[
'beautifulsoup4',
'celery',
'lxml',
'pymongo',
'pytest',
'reppy',
'requests',
'w3lib',
'langdetect',
'networkx',
'psycopg2-binary',
'flask',
'html5lib',
'pdfminer.six',
'backports.pbkdf2',
'timeout-decorator',
'jsonschema'
],
entry_points={
'console_scripts': [
'upol_search_engine = upol_search_engine.__main__:main'
]
}
)