forked from manifoldai/merf
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
39 lines (35 loc) · 1015 Bytes
/
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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "DumME"
version = "0.1.0"
dependencies = [
"pandas>=1.0",
"numpy>=1.20",
"scikit-learn",
"matplotlib>=3.0",
"lightgbm",
]
description="Mixed Effects Dummy Model"
readme="README.md"
requires-python = '>=3.9'
authors = [
{name = "Peter Kalverla.", email = "p.kalverla@esciencecenter.nl"},
{name = "Stefan Verhoeven.", email = "s.verhoeven@esciencecenter.nl"},
]
license = {file = "LICENSE.txt"}
keywords=["random forest", "machine learning", "mixed effects"]
classifiers=[
"Development Status :: 3 - Alpha",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
]
[project.optional-dependencies]
dev = ["black", "ruff", "isort", "pytest", "pycaret"]
[project.urls]
Repository="https://github.com/phenology/dumme"
Original="https://github.com/manifoldai/merf"
[tool.isort]
profile = "black"