-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
51 lines (46 loc) · 1.32 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
49
50
51
[build-system]
requires = ["setuptools>=64", "wheel", "setuptools_scm[toml]"]
build-backend = "setuptools.build_meta"
[project]
name = "spcqe"
authors = [
{name = "Mehmet Giray Ogut", email = "[email protected]"},
{name = "Aramis Dufour", email = "[email protected]"},
{name = "Bennet Meyers", email = "[email protected]"}
]
description = "Smooth periodic consistent quantile estimation"
classifiers = [
"License :: OSI Approved :: BSD License",
"Natural Language :: English",
"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",
]
readme = "README.md"
requires-python = ">=3.9"
dependencies = [
"numpy",
"cvxpy",
"scikit-learn",
"tqdm",
"sig-decomp"
]
dynamic = ["version"]
[tool.setuptools_scm]
version_file = "src/spcqe/_version.py"
[project.urls]
Homepage = "https://github.com/cvxgrp/spcqe"
"Bug Tracker" = "https://github.com/cvxgrp/spcqe/issues"
[project.license]
file = "LICENSE"
[options]
zip_safe = false
include_package_data = true
[tool.setuptools.packages.find]
where = ["src"]
include = [ "spcqe", ]
namespaces = false