-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
32 lines (29 loc) · 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
from setuptools import find_packages, setup
with open("VERSION", "r") as f:
version = f.read().strip()
with open("onnxllm/version.py", "w") as f:
f.write(f'__version__ = "{version}"\n')
setup(
name="onnxllm",
version=version,
description="OnnxLLM: A collection of Onnx Large Language Models.",
long_description=open("README.md", "r", encoding="utf-8").read(),
long_description_content_type="text/markdown",
url="https://github.com/inisis/OnnxLLM",
author="inisis",
author_email="[email protected]",
project_urls={
"Bug Tracker": "https://github.com/inisis/OnnxLLM/issues",
},
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Intended Audience :: Developers",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
],
license="MIT",
install_requires=[],
packages=find_packages(exclude=("tests", "tests.*")),
zip_safe=True,
python_requires=">=3.6",
)