-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
45 lines (42 loc) · 1.06 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
33
34
35
36
37
38
39
40
41
42
43
44
45
[project]
name = "markovm"
description = "Python library for Markov Models."
readme = "README.md"
requires-python = ">=3.7"
license = {text = "MIT"}
keywords = [
"markov model",
"markov chain",
]
authors = [
{ name = "HH-MWB", email = "[email protected]" },
]
classifiers = [
"Development Status :: 2 - Pre-Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Operating System :: OS Independent",
]
dependencies = [
"numpy~=1.20",
]
dynamic = [
"version",
]
[project.urls]
"Homepage" = "https://pypi.org/project/markovm"
"Bug Reports" = "https://github.com/HH-MWB/markovm/issues"
"Source" = "https://github.com/HH-MWB/markovm"
[tool.setuptools.dynamic]
version = {attr = "markovm.__version__"}
[build-system]
requires = [
"setuptools",
]
build-backend = "setuptools.build_meta"