-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
58 lines (46 loc) · 1.62 KB
/
Copy pathpyproject.toml
File metadata and controls
58 lines (46 loc) · 1.62 KB
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
[build-system]
requires = ["setuptools>=80", "wheel", "pybind11"]
build-backend = "setuptools.build_meta"
[project]
name = "fasttext-community"
version = "0.11.7"
description = "fasttext Python bindings"
readme = { file = "python/README.rst", content-type = "text/x-rst" }
requires-python = ">=3.9, <3.14"
license = "MIT"
license-files = ["LICENSE"]
authors = [
{ name = "Nurzhan Muratkhan", email = "nurzhanmuratkhan@gmail.com" },
{ name = "Onur Celebi", email = "celebio@fb.com" },
]
dependencies = ["numpy", "pybind11>=2.2", "requests", "tqdm"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering",
"Topic :: Software Development",
"Programming Language :: Python :: 3",
"Programming Language :: C++",
]
[project.urls]
Homepage = "https://github.com/munlicode/fasttext-community"
"Bug Tracker" = "https://github.com/munlicode/fasttext-community/issues"
"Source Code" = "https://github.com/munlicode/fasttext-community"
[project.optional-dependencies]
test = ["pytest", "pytest-mock"]
dev = ["pytest", "pytest-mock", "build", "twine", "cibuildwheel"]
[tool.setuptools.packages.find]
where = ["python/fasttext_module"]
[tool.cibuildwheel]
build = "cp39-* cp310-* cp311-* cp312-* cp313-*"
test-extras = ["test"]
test-command = "pytest {project}"
build-verbosity = 1
[tool.cibuildwheel.linux]
archs = ["auto"]
[tool.cibuildwheel.macos]
archs = ["arm64", "x86_64", "universal2"]
[tool.cibuildwheel.windows]
# 32-bit builds are not supported (MSVC intrinsics / numpy drop win32 support)
archs = ["AMD64"]