Skip to content

Commit 575a2a2

Browse files
committed
pypi
1 parent 02335f1 commit 575a2a2

File tree

2 files changed

+39
-1
lines changed

2 files changed

+39
-1
lines changed

.gitignore

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
11
*/__pycache__
22
.vscode
33
.pytest_cache
4-
/data
4+
/data
5+
/dist
6+
/zenann

pyproject.toml

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
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+
]

0 commit comments

Comments
 (0)