-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
30 lines (27 loc) · 1.03 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
#!/usr/bin/env python3
from setuptools import find_packages, setup
from pathlib import Path
quantization_dir = Path(__file__).parent
install_requires = (quantization_dir / "requirements.txt").read_text().splitlines()
setup(
name="quantization",
version="0.1",
python_requires=">=3.6.0",
description="Utility for learning compact codes for vectors, based on Torch",
author="Daniel Povey",
license="Apache-2.0 License",
packages=find_packages(),
install_requires=install_requires,
classifiers=[
"Development Status :: 3 - Alpha",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Intended Audience :: Science/Research",
"Operating System :: POSIX :: Linux",
"License :: OSI Approved :: Apache Software License",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Software Development :: Libraries :: Python Modules",
"Typing :: Typed",
],
)