Skip to content

Commit

Permalink
Add version inference via setuptools-scm (#58)
Browse files Browse the repository at this point in the history
  • Loading branch information
kzawora-intel authored Dec 13, 2024
1 parent 0766759 commit fffc2c0
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 7 deletions.
18 changes: 18 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
[build-system]
requires = ["setuptools>=64", "setuptools-scm>=8"]
build-backend = "setuptools.build_meta"

[project]
name = "vllm-hpu-extension"
dynamic = ["version"]
description = "HPU extension package for vLLM"
authors = [
{name = "Tomasz Zielinski", email = "[email protected]"},
{name = "Konrad Zawora", email = "[email protected]"},
]
dependencies = []
requires-python = "==3.10.*"
readme = "README.md"
license = {text = "Apache 2.0"}

[tool.setuptools_scm]
8 changes: 1 addition & 7 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,20 +2,14 @@

setup(
name="vllm-hpu-extension",
version="0.1",
packages=find_packages(),
install_requires=[],
author="Tomasz Zielinski",
author_email="[email protected]",
description="HPU extension package for vLLM",
long_description="HPU extension package for vLLM. The package contains custom HPU-specific ops. It only works together with vLLM.",
long_description_content_type="text/markdown",
url="https://github.com/tzielinski-habana/vllm-hpu-extension",
url="https://github.com/HabanaAI/vllm-hpu-extension",
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache 2.0",
"Operating System :: OS Independent",
],
python_requires=">=3.6",
)

0 comments on commit fffc2c0

Please sign in to comment.