-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpyproject.toml
More file actions
30 lines (25 loc) · 824 Bytes
/
Copy pathpyproject.toml
File metadata and controls
30 lines (25 loc) · 824 Bytes
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
# pyproject.toml
[build-system]
requires = ['setuptools>=61.0.0', 'wheel']
build-backend = 'setuptools.build_meta'
[project]
name = 'fastreg'
version = '1.2'
description = 'Fast sparse regressions'
readme = { file = 'README.md' , content-type = 'text/markdown' }
authors = [{ name = 'Doug Hanley', email = 'thesecretaryofwar@gmail.com' }]
license = { text = 'MIT' }
classifiers = [
'License :: OSI Approved :: MIT License',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
]
keywords = ['statistics', 'regression', 'ols', 'glm']
dependencies = ['numpy', 'scipy', 'pandas']
requires-python = '>=3.7'
[project.optional-dependencies]
glm = ['jax', 'jaxlib', 'optax']
[project.urls]
Homepage = 'http://github.com/iamlemec/fastreg'
[tool.setuptools]
package-dir = { fastreg = 'fastreg' }