-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
41 lines (36 loc) · 967 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 = "KamiStats"
version = "0.1.1"
description = "A statistics library project"
readme = "README.md"
authors = [
{ name = "Kishimita", email = "[email protected]" }
]
license = { text = "MIT" }
classifiers = [
"Development Status :: 5 - Production/Stable",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent"
]
keywords = [
"statistics distributions",
"probability",
"random variables",
"pdf",
"cdf",
"mean", "variance", "ßstandard deviation"]
requires-python = ">=3.8"
# other project configurations
dependencies = [
"scipy>=1.13.0",
"sympy>=1.13.0"
]
[project.urls]
Homepage = "https://www.github.com/kishimita/kamistats"
Issues = "https://www.github.com/kishimita/kamistats/issues"
[project.scripts]
kami-cli = "KamiStats.main:main"