-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
42 lines (38 loc) · 1.17 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
from setuptools import setup, find_packages
exec(open('venra/__version__.py').read())
with open("README.md", mode="r", encoding="utf-8") as f:
readme_contents = f.read()
setup(
name = 'venra',
packages = find_packages(exclude=[]),
version = __version__,
license='MIT',
description = 'Venra provides a simple, high-level api for vespa.ai.',
author = 'Cody Collier',
author_email = '[email protected]',
long_description=readme_contents,
long_description_content_type = 'text/markdown',
url = 'https://github.com/codycollier/venra',
keywords = [
'artificial intelligence',
'information retrieval',
'machine learning',
'search',
],
python_requires=">=3.8, <4",
install_requires=[
'packaging',
'requests',
],
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Topic :: Scientific/Engineering :: Artificial Intelligence',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
],
)