-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
39 lines (34 loc) · 951 Bytes
/
pyproject.toml
File metadata and controls
39 lines (34 loc) · 951 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
31
32
33
34
35
36
37
38
39
[project]
name = "git_bayesect"
version = "1.2"
authors = [{name = "Shantanu Jain"}, {email = "hauntsaninja@gmail.com"}]
description = "Git bisection with Bayesian statistics"
readme = "README.md"
license = {file = "LICENSE"}
classifiers = [
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Topic :: Software Development",
"Topic :: Utilities",
]
requires-python = ">=3.10"
dependencies = [
"numpy",
"scipy",
]
[project.scripts]
git-bayesect = "git_bayesect:main"
git_bayesect = "git_bayesect:main"
[project.urls]
homepage = "https://github.com/hauntsaninja/git_bayesect"
repository = "https://github.com/hauntsaninja/git_bayesect"
[tool.flit.module]
name = "git_bayesect"
[build-system]
requires = ["flit_core>=3.4"]
build-backend = "flit_core.buildapi"
[tool.mypy]
strict = true
allow_untyped_calls = true