forked from facebookresearch/distributed-faiss
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
39 lines (33 loc) · 986 Bytes
/
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
#!/usr/bin/env python3
# Copyright (c) Meta Platforms, Inc. and affiliates.
# All rights reserved.
# This source code is licensed under the license found in the
# LICENSE file in the root directory of this source tree.
from setuptools import setup
with open("README.md") as f:
readme = f.read()
setup(
name="distributed_faiss",
version="0.0.1",
description="Facebook AI Research Distributed Faiss",
url="", # TODO
classifiers=[
"Intended Audience :: Science/Research",
"License :: CC-BY-NC",
"Programming Language :: Python :: 3.7",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
],
long_description=readme,
long_description_content_type="text/markdown",
setup_requires=["setuptools>=18.0"],
install_requires=[
"black",
"cython",
"faiss-cpu>=1.7.2",
"filelock",
"numpy",
"regex",
"submitit>=1.1.5",
"torch>=1.2.0",
],
)