-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
update packaging and version tracking
- Loading branch information
Showing
3 changed files
with
28 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -329,4 +329,5 @@ share/python-wheels/ | |
.installed.cfg | ||
*.egg | ||
MANIFEST | ||
src/spcqe/_version.py | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,12 @@ | ||
[build-system] | ||
# Minimum requirements for the build system to execute. | ||
requires = ["setuptools>=64", "wheel"] # PEP 508 specifications. | ||
requires = ["setuptools>=64", "wheel", "setuptools_scm[toml]"] | ||
build-backend = "setuptools.build_meta" | ||
|
||
[project] | ||
name = "spcqe" | ||
version = "0.0.1a" | ||
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" | ||
|
@@ -21,3 +20,22 @@ dependencies = [ | |
"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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,8 @@ | ||
from spcqe.functions import make_basis_matrix, make_regularization_matrix, pinball_slopes | ||
from spcqe.quantiles import SmoothPeriodicQuantiles | ||
from spcqe.solvers import solve_cvx, solve_osd | ||
from spcqe.solvers import solve_cvx, solve_osd | ||
|
||
try: | ||
from ._version import __version__ | ||
except ImportError: | ||
__version__ = "0.0.0" |