forked from koursaros-ai/nboost
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
61 lines (60 loc) · 2.1 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
50
51
52
53
54
55
56
57
58
59
60
61
from setuptools import setup, find_packages
from pathlib import Path
from nboost import __version__
setup(
name='nboost',
packages=find_packages(),
include_package_data=True,
version=__version__.__doc__,
license='Apache 2.0',
description='Nboost is a scalable, search-'
'api-boosting platform for developing and deploying '
'automated SOTA models more relevant search results.',
long_description=Path('README.md').read_text('utf8'),
long_description_content_type='text/markdown',
author='Koursaros',
author_email='[email protected]',
url='https://github.com/koursaros-ai/nboost',
# download_url='https://github.com/koursaros-ai/nboost/archive/0.0.1.tar.gz',
keywords=[
'elasticsearch',
'distributed',
'cloud-native',
'neural',
'inference',
],
install_requires=[
'termcolor',
'requests',
'elasticsearch',
'tqdm',
'httptools',
'jsonpath-ng',
'flask'
],
extras_require={
'pt': ['torch', 'transformers==2.2.1'],
'tf': ['tensorflow==1.15', 'sentencepiece'],
'all': ['torch', 'tensorflow==1.15', 'transformers==2.2.1'],
},
entry_points={'console_scripts': [
'nboost=nboost.__main__:main',
'nboost-index=nboost.indexers.__main__:main'
]},
classifiers=[
'Intended Audience :: Education',
'Intended Audience :: Science/Research',
'Intended Audience :: Developers',
'Topic :: Scientific/Engineering :: Artificial Intelligence',
'Topic :: Internet :: WWW/HTTP :: Indexing/Search',
'Topic :: Scientific/Engineering',
'Topic :: Scientific/Engineering :: Mathematics',
'Topic :: Software Development',
'Topic :: Software Development :: Libraries',
'Topic :: Software Development :: Libraries :: Python Modules',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
],
)