forked from vespa-engine/pyvespa
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
65 lines (60 loc) · 1.7 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
62
63
64
65
import os
import setuptools
def get_target_version():
pyvespa_version = os.environ.get("PYVESPA_VERSION", 0.7)
build_nr = os.environ.get("SD_EVENT_ID", "0+dev")
return "{}.{}".format(pyvespa_version, build_nr)
min_python = "3.8"
setuptools.setup(
name="pyvespa",
version=get_target_version(),
description="Python API for vespa.ai",
long_description=open('README.md').read(),
long_description_content_type='text/markdown',
url="https://pyvespa.readthedocs.io/",
keywords="vespa, search engine, data science",
author="Thiago G. Martins",
maintainer="Kristian Aune",
maintainer_email="[email protected]",
classifiers=[
"License :: OSI Approved :: Apache Software License",
],
packages=setuptools.find_packages(),
include_package_data=True,
install_requires=[
"requests",
"docker",
"jinja2",
"cryptography",
"aiohttp",
"tenacity",
"typing_extensions",
],
extras_require={
"dev": [
"pytest",
"requests-mock",
"datasets",
"notebook",
"nbconvert",
"runnb",
],
},
python_requires=">=3.8",
zip_safe=False,
package_data={"vespa": ["py.typed"]},
data_files=[
(
"templates",
[
"vespa/templates/hosts.xml",
"vespa/templates/macros.txt",
"vespa/templates/services.xml",
"vespa/templates/schema.txt",
"vespa/templates/query_profile.xml",
"vespa/templates/query_profile_type.xml",
"vespa/templates/validation-overrides.xml"
],
)
],
)