-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
31 lines (30 loc) · 1018 Bytes
/
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
from setuptools import setup, find_packages
setup(
name="safe-pfl-distance",
version="0.1.4",
description="safe-pfl distance calculator",
url="https://github.com/safe-pfl/distances",
author="MohammadMojtaba Roshani",
author_email="[email protected]",
license="Apache Software License",
packages=find_packages(),
install_requires=[
"torch>=2.5",
"matplotlib==3.6.3",
"matplotlib-inline==0.1.7",
"matplotlib2tikz==0.7.6",
"scipy>=1.14",
"scikit-learn>=1.5",
"numpy>=2.0",
],
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
],
)