-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
102 lines (92 loc) · 2.46 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
[project]
name = "adelie"
dynamic = ["version"]
authors = [
{ name="James Yang", email="jamesyang916@gmail.com" },
]
maintainers = [
{ name="James Yang", email="jamesyang916@gmail.com" },
]
classifiers = [
"Intended Audience :: Science/Research",
"Intended Audience :: Developers",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3 :: Only",
"License :: OSI Approved :: MIT License",
"Topic :: Software Development",
"Topic :: Scientific/Engineering",
"Typing :: Typed",
"Operating System :: OS Independent",
]
description = "A fast, flexible package for group elastic net."
license = {file = "LICENSE"}
keywords = ["group lasso", "group elastic net", "lasso", "elastic net"]
readme = "README.md"
requires-python = ">=3.9"
dependencies = [
"numpy>=1.24.2, <2",
"scipy>=1.10.1, <2",
"matplotlib>=3.7.0, <4",
"ipython>=8.17.2, <9",
"scikit-learn>=1.3.2, <2",
]
[project.urls]
Homepage = "https://github.com/JamesYang007/adelie"
Documentation = "https://jamesyang007.github.io/adelie"
Repository = "https://github.com/JamesYang007/adelie"
[tool.poetry]
name = "adelie"
version = "0.0.0"
description = "A fast, flexible package for group elastic net."
authors = [
"James Yang <jamesyang916@gmail.com>",
]
[tool.poetry.dependencies]
python = ">=3.9"
numpy = "^1.24.2"
scipy = "^1.10.1"
matplotlib = "^3.7.0"
ipython = "^8.17.2"
scikit-learn = "^1.3.2"
[tool.poetry.group.test.dependencies]
pytest = "^7.2.1"
cvxpy = "^1.3.1"
mosek = {version = "^10.1.27", python = ">=3.9,<3.13"}
[tool.poetry.group.doc.dependencies]
sphinx = "^7.2.6"
pydata-sphinx-theme = "^0.14.1"
numpydoc = "^1.6.0"
nbsphinx = "^0.9.3"
sphinx-design = "^0.5.0"
pgenlib = "^0.90.2"
knockpy = "^1.3.1"
[tool.poetry.group.dev.dependencies]
cibuildwheel = "^2.17.0"
pandas = "^1.5.3"
pre-commit = "^3.1.1"
pybind11 = "^2.11.1"
nbformat = "^5.7.3"
jupyter = "^1.0.0"
jupytext = "^1.14.5"
tqdm = "^4.65.0"
latextable = "^1.0.0"
twine = "^4.0.2"
tabulate = "^0.9.0"
[tool.jupytext]
notebook_metadata_filter = "-all"
cell_metadata_filter = "-all"
[build-system]
requires = [
"setuptools",
"wheel",
"pybind11",
]
build-backend = "setuptools.build_meta"
[tool.cibuildwheel]
build-frontend = "build"
[tool.setuptools_scm]