-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
43 lines (41 loc) · 1.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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "PyBMF"
version = "0.0.1"
dependencies = [
"Cython",
"ipython",
"matplotlib",
"mlxtend",
"networkx",
"numpy",
"p_tqdm",
"pandas",
"scikit_learn",
"scipy",
"setuptools",
"tqdm",
"uszipcode",
]
requires-python = ">=3.9"
authors = [
{name = "Hongtuo Nie", email = "[email protected]"},
]
maintainers = [
{name = "Hongtuo Nie", email = "[email protected]"},
]
description = "A Python library for Boolean Matrix Factorization"
readme = "README.md"
license = {file = "LICENSE"}
keywords = ["Boolean", "binary", "matrix", "factorization", "decomposition", "testbench"]
classifiers = [
"Development Status :: 4 - Beta",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
[project.urls]
Homepage = "https://github.com/PreferredAI/PyBMF"
Issues = "https://github.com/PreferredAI/PyBMF/issues"