Skip to content

Commit e244d47

Browse files
committed
address #119
1 parent ce34332 commit e244d47

File tree

2 files changed

+13
-4
lines changed

2 files changed

+13
-4
lines changed

pyproject.toml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
[build-system]
2+
requires = ["setuptools"]
3+
build-backend = "setuptools.build_meta"

setup.py

Lines changed: 10 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
setup(
44
name = 'vector_quantize_pytorch',
55
packages = find_packages(),
6-
version = '1.14.7',
6+
version = '1.14.8',
77
license='MIT',
88
description = 'Vector Quantization - Pytorch',
99
long_description_content_type = 'text/markdown',
@@ -16,11 +16,17 @@
1616
'pytorch',
1717
'quantization'
1818
],
19-
install_requires=[
20-
'einops>=0.7.0',
21-
'einx[torch]>=0.1.3',
19+
install_requires = [
20+
'einops>=0.8.0',
21+
'einx[torch]>=0.2',
2222
'torch'
2323
],
24+
extras_require = dict(
25+
test = [
26+
'torchvision',
27+
'tqdm'
28+
]
29+
),
2430
classifiers=[
2531
'Development Status :: 4 - Beta',
2632
'Intended Audience :: Developers',

0 commit comments

Comments
 (0)