forked from jonathan-taylor/ISLP
-
Notifications
You must be signed in to change notification settings - Fork 41
/
pyproject.toml
65 lines (61 loc) · 2.01 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
[project]
name = "ISLP"
dependencies = ["numpy>=1.7.1",
"scipy>=0.9",
"pandas>=0.20",
"lxml", # pandas needs this for html
"scikit-learn>=1.2",
"joblib",
"statsmodels>=0.13",
"lifelines",
"pygam", # for GAM in Ch7
"torch",
"pytorch_lightning",
"torchmetrics",
]
description = "Library for ISLP labs"
readme = "README.md"
requires-python = ">=3.9"
license = {file = "LICENSE"}
keywords = []
authors = [
{name = "Trevor Hastie", email="[email protected]" },
{name = "Gareth James", email="[email protected]"},
{name = "Jonathan Taylor", email="[email protected]" },
{name = "Rob Tibshirani", email="[email protected]" },
{name = "Daniela Witten", email="[email protected]" },
]
maintainers = [
{name = "Jonathan Taylor", email="[email protected]" },
]
classifiers = ["Development Status :: 3 - Alpha",
"Environment :: Console",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Topic :: Scientific/Engineering"
]
dynamic = ["version"]
[project.urls] # Optional
"Homepage" = "https://github.com/intro-stat-learning/ISLP"
"Bug Reports" = "https://github.com/intro-stat-learning/ISLP/issues"
"Funding" = "https://donate.pypi.org"
"Say Thanks!" = "http://saythanks.io/to/example"
"Source" = "https://github.com/pypa/sampleproject/"
[project.optional-dependencies]
doc = ['Sphinx>=3.0']
[build-system]
requires = ["setuptools>=42",
"wheel",
"versioneer[toml]",
"Sphinx>=1.0"
]
build-backend = "setuptools.build_meta"
[tool.versioneer]
VCS = "git"
style = "pep440"
versionfile_source = "ISLP/_version.py"
versionfile_build = "ISLP/_version.py"
tag_prefix = "v"
parentdir_prefix = "ISLP-"