-
Notifications
You must be signed in to change notification settings - Fork 24
Expand file tree
/
Copy pathsetup.py
More file actions
29 lines (28 loc) · 724 Bytes
/
setup.py
File metadata and controls
29 lines (28 loc) · 724 Bytes
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
from setuptools import setup, find_packages
setup(
name="bptf",
version="0.1",
description="A simple Python package for Bayesian Poisson tensor factorization (BPTF).",
author="Aaron Schein",
package_dir={"": "src"},
packages=find_packages(where="src"),
install_requires=[
"tensorly>=0.8.1",
"numpy>=2.0.2",
"scipy>=1.14.1",
"pandas>=2.2.3",
"numba>=0.60.0",
"scikit-learn>=1.5.2",
"sparse>=0.15.4",
],
extras_require={
"dev": [
"ipython",
"matplotlib",
"seaborn",
"tqdm",
"jedi",
"pytest", # For testing, if you plan to add tests
],
},
)