-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·64 lines (58 loc) · 2.1 KB
/
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
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
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
# ------------------------------------------------------------------------------
#
# Copyright (c) 2024 Emanuele Ballarin <[email protected]>
# Released under the terms of the MIT License
# (see: https://url.ballarin.cc/mitlicense)
#
# ------------------------------------------------------------------------------
import os
from setuptools import find_packages
from setuptools import setup
def read(fname):
with open(os.path.join(os.path.dirname(__file__), fname)) as f:
return f.read().strip()
PACKAGENAME: str = "fastwonn"
setup(
name=PACKAGENAME,
version="0.0.9",
author="Emanuele Ballarin",
author_email="[email protected]",
url="https://github.com/emaballarin/fastwonn",
description="Fast, GPU-friendly, differentiable computation of Intrinsic Dimension via Maximum Likelihood, the TwoNN algorithm, and everything in between!",
long_description=read("README.md"),
long_description_content_type="text/markdown",
keywords=[
"Deep Learning",
"Differentiable Programming",
"Intrinsic Dimension",
"Machine Learning",
"Manifold Learning",
"Maximum Likelihood Estimation",
"PyTorch",
"TwoNN",
],
license="MIT",
packages=[
package for package in find_packages() if package.startswith(PACKAGENAME)
],
classifiers=[
"Development Status :: 4 - Beta",
"Topic :: Scientific/Engineering :: Mathematics",
"Environment :: Console",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
],
python_requires=">=3.10",
install_requires=["torch>=2", "torchsort>=0.1.9"],
extras_require={
"keops": ["keopscore>=2.2.3", "pykeops>=2.2.3"],
"faiss_cpu": ["faiss-cpu>=1.8.0"],
"faiss_gpu_older": ["faiss-gpu>=1.7.2"],
"faiss_gpu_newer_cu11": ["faiss-gpu-cu11>=1.8.0.2"],
"faiss_gpu_newer_cu12": ["faiss-gpu-cu12>=1.8.0.2"],
},
include_package_data=False,
zip_safe=True,
)