-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathpyproject.toml
67 lines (59 loc) · 2.07 KB
/
pyproject.toml
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
59
60
61
62
63
64
65
66
67
[project]
name = "dbscan"
authors = [
{name = "Yiqiu Wang", email = "[email protected]"}
]
maintainers = [
{name = "Anirudh Vegesana", email = "[email protected]"}
]
description = "Theoretically efficient and practical parallel DBSCAN"
readme = "README.md"
keywords = ['cluster', 'clustering', 'density', 'dbscan']
license = {text = "MIT"}
classifiers = [
'Development Status :: 2 - Pre-Alpha',
'Intended Audience :: Science/Research',
'Intended Audience :: Developers',
"License :: OSI Approved :: MIT License",
'Programming Language :: C++',
'Programming Language :: Python :: 3',
'Topic :: Software Development',
'Topic :: Scientific/Engineering',
]
dynamic = ["version", "dependencies", "requires-python"]
[project.optional-dependencies]
scikit-learn = [
"scikit-learn"
]
example = [
"scikit-learn",
"matplotlib"
]
[project.urls]
homepage = "https://sites.google.com/view/yiqiuwang/dbscan"
repository = "https://github.com/wangyiqiu/dbscan-python"
[build-system]
requires = ["setuptools", "setuptools_scm", "wheel", "oldest-supported-numpy"]
[tool.setuptools_scm]
write_to = "pythonmodule/_version.py"
[tool.cibuildwheel]
# TODO: Update the pypy to the latest version. This is unnecesary for cpython
# because it will be compatible with all newer releases. Changing the versions
# could be convienient in the future, but for now, totally backwards compatible
# wheels work nicely.
#
# Currently, musllinux is left off because Numpy doesn't publish wheels for it
# on PyPI. If you want this package, build it from source. Same for rarer
# architectures, like ppc64le or s390x. You can do this by running the same
# command you run normally:
# pip install dbscan
build = "cp36-* cp38-macosx_arm64" # pp39-* cp39-win_arm64
skip = "*-win32 *_i686 *-musllinux_*"
# We will only build x86_64 when merged into master to save on compilation
# time.
# [tool.cibuildwheel.macos]
# archs = ["x86_64", "arm64"]
# We will only build aarch64 when merged into master to save on compilation
# time.
# [tool.cibuildwheel.linux]
# archs = ["auto", "aarch64"]