-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
32 lines (30 loc) · 866 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
32
import os
import sys
from setuptools import setup, find_packages
here = os.path.abspath(os.path.dirname(__file__))
sys.path.insert(0, os.path.join(here, "KPLA"))
from version import __version__
setup(
name="KPLA",
description="kernel proxy methods for domain adaptation",
author="Katherine Tsai, Olawale Salaudeen, Nicole Chiou",
version=__version__,
packages=find_packages(),
install_requires=[
"cosde",
"cvxpy >= 1.4.1",
"cvxopt >= 1.3.2",
"jax >= 0.4.25",
"jaxlib >= 0.4.25",
"latent_shift_adaptation >= 0.1.0",
"pandas >= 2.0.3",
"matplotlib >= 3.7.2",
"numpy >= 1.24.3",
"scikit-image >= 0.22.0",
"scikit-learn >= 1.3.0",
"scipy >= 1.11.2",
"tqdm >= 4.66.1",
"tensorflow >= 2.11.0",
],
license_files=("LICENSE"),
)