-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpyproject.toml
48 lines (43 loc) · 1.29 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
44
45
46
47
48
[build-system]
requires = ["setuptools>=75.0", "setuptools-scm[toml]"]
build-backend = "setuptools.build_meta"
[project]
name = "sig-decomp"
description = "Optimization-based signal decomposition"
readme = "README.md"
license.file = "LICENSE"
authors = [
{ name = "Bennet Meyers", email = "[email protected]" },
]
maintainers = [
{ name = "Sara Miskovich", email = "[email protected]" },
]
keywords = ["convex optimization", "optimization"]
requires-python = ">=3.9"
dependencies = [
"cvxpy",
"matplotlib",
"numpy",
"scipy",
"scikit-learn",
"qss",
"pandas" # may want to remove once osd is deprecated
]
classifiers = [
"Development Status :: 4 - Beta",
"License :: OSI Approved :: BSD License",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering",
]
dynamic = ["version"]
[tool.setuptools_scm]
[tool.setuptools.packages.find]
include = ["gfosd*", "osd*"]
[project.urls]
Homepage = "https://github.com/cvxgrp/signal-decomposition"
"Bug Tracker" = "https://github.com/cvxgrp/signal-decomposition/issues"