-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
32 lines (29 loc) · 1.03 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
[build-system]
requires = ["flit_core>=3.2,<4", "numpy", "tqdm", "scipy", "pandas", "future", "scikit-learn"]
build-backend = "flit_core.buildapi"
[project]
name = "pygam"
authors = [{name = "tommyod"}]
readme = "README.md"
requires-python = ">=3.8"
license = {file = "LICENSE"}
keywords = ["gam", "generalized additive models"]
classifiers = [
"Development Status :: 1 - Planning",
"Intended Audience :: Science/Research",
"Natural Language :: English",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3 :: Only",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Scientific/Engineering :: Mathematics",
]
dynamic = ["version", "description"]
[project.urls]
Homepage = "https://github.com/tommyod/pyGAM"
[tool.flit.module]
name = "pygam"