File tree Expand file tree Collapse file tree 2 files changed +39
-1
lines changed
Expand file tree Collapse file tree 2 files changed +39
-1
lines changed Original file line number Diff line number Diff line change 11* /__pycache__
22.vscode
33.pytest_cache
4- /data
4+ /data
5+ /dist
6+ /zenann
Original file line number Diff line number Diff line change 1+ [build-system ]
2+ requires = [
3+ " setuptools>=61.0" ,
4+ " wheel"
5+ ]
6+ build-backend = " setuptools.build_meta"
7+
8+ [project ]
9+ name = " zenann"
10+ version = " 0.1.0"
11+ description = " ZenANN: High-performance ANN search with a prebuilt C++ .so module"
12+ readme = " README.md"
13+
14+ authors = [
15+ { name = " Seco1024" , email = " deyenqiu@gmail.com" }
16+ ]
17+ requires-python = " >=3.10"
18+
19+ dependencies = [
20+ " numpy>=1.20" ,
21+ " pybind11>=2.10"
22+ ]
23+
24+ [project .urls ]
25+ "Homepage" = " https://github.com/Seco1024/zenann"
26+ "Repository" = " https://github.com/Seco1024/zenann.git"
27+
28+ [tool .setuptools ]
29+ packages = [" zenann" ]
30+
31+ [tool .setuptools .package-data ]
32+ "zenann" = [
33+ " *.so" ,
34+ " *.pyd" ,
35+ " py.typed"
36+ ]
You can’t perform that action at this time.
0 commit comments