Skip to content

Commit

Permalink
Update pyproject.toml
Browse files Browse the repository at this point in the history
  • Loading branch information
arminwitte committed Jan 31, 2023
1 parent d7df7b1 commit f023a46
Showing 1 changed file with 34 additions and 3 deletions.
37 changes: 34 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,42 @@
requires = ["hatchling"]
build-backend = "hatchling.build"

[tool.hatchling]
[project]
name = "binarybeech"
version = "0.1.0"
description = "Simplistic algorithms to train decision trees for regression and classification"
authors = ["Armin Witte <your.email@example.com>"]
version = "0.0.4"
authors = [
{ name="Armin Witte"},
]
readme = "README.md"
license = { file="LICENSE" }
requires-python = ">=3.7"
keywords = [
"machine learning",
]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = [
"numpy>=1.19.0",
"scipy>=1.8.0",
"pandas",
"treelib",
"matplotlib"
]
[project.urls]
"Homepage" = "https://github.com/arminwitte/binarybeech"
"Bug Tracker" = "https://github.com/arminwitte/binarybeech/issues"

[tool.coverage.run]
source = ['binarybeech']
branch = true

[tool.coverage.report]
show_missing = true
fail_under = 90

[tool.hatchling.dependencies]
python = "^3.7"
Expand Down

0 comments on commit f023a46

Please sign in to comment.