-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
36 lines (35 loc) · 974 Bytes
/
Copy pathsetup.py
File metadata and controls
36 lines (35 loc) · 974 Bytes
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
#!/usr/bin/env python
from setuptools import setup
setup(
name='epic-search',
version='1.0.0',
description='a session-based semantic search engine',
author='Sebastian Straub',
author_email='sstraub (at) posteo (dot) de',
url='https://github.com/Klamann/epic-search',
license='Apache 2.0',
packages=['search_ui'],
package_dir={'search_ui': 'search_ui'},
package_data={'search_ui': ['search_ui/res/*.conf']},
zip_safe=True,
classifiers=(
'Natural Language :: English',
'Programming Language :: Python :: 3',
),
install_requires=[
'elasticsearch>=5.3.0,<6.0.0',
'flask>=0.12.0,<0.13.0',
'Flask-Assets>=0.12.0,<0.13.0',
'jsmin>=2.0',
'cssmin>=0.2',
'pyScss>=1.0',
'python-dateutil>=2.0',
'pyhocon>=0.3',
'CyHunspell>=1.2.0',
'editdistance>=0.3',
],
tests_require=[
'requests>=2.0'
'lxml>=3.0'
]
)