-
Notifications
You must be signed in to change notification settings - Fork 50
Expand file tree
/
Copy pathpyproject.toml
More file actions
59 lines (54 loc) · 1.77 KB
/
pyproject.toml
File metadata and controls
59 lines (54 loc) · 1.77 KB
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "gmr"
maintainers = [
{ name="Alexander Fabisch", email="alexander.fabisch@dfki.de" },
]
authors = [
{ name="Alexander Fabisch", email="alexander.fabisch@dfki.de" },
]
description = "Gaussian Mixture Regression"
requires-python = ">=2.7"
license = "BSD-3-Clause"
classifiers = [
"Intended Audience :: Science/Research",
"Intended Audience :: Developers",
"Programming Language :: Python",
"Topic :: Software Development",
"Topic :: Scientific/Engineering",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX",
"Operating System :: Unix",
"Operating System :: MacOS",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"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",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
]
dependencies = ["numpy", "scipy"]
readme = "README.md"
dynamic = ["version"]
[project.optional-dependencies]
all = ["matplotlib", "scikit-learn", "svgpathtools"]
test = ["pytest", "pytest-cov"]
doc = ["pdoc3"]
[project.urls]
Homepage = "https://github.com/AlexanderFabisch/gmr"
Issues = "https://github.com/AlexanderFabisch/gmr/issues"
[tool.setuptools.packages.find]
where = ["."]
include = ["gmr"]
[tool.setuptools.dynamic]
version = {attr = "gmr.__version__"}
readme = {file = ["README.md"]}