|
| 1 | +[build-system] |
| 2 | +requires = ["setuptools"] |
| 3 | +build-backend = "setuptools.build_meta" |
| 4 | + |
| 5 | +[project] |
| 6 | +name = "gmr" |
| 7 | +maintainers = [ |
| 8 | + { name="Alexander Fabisch", email="alexander.fabisch@dfki.de" }, |
| 9 | +] |
| 10 | +authors = [ |
| 11 | + { name="Alexander Fabisch", email="alexander.fabisch@dfki.de" }, |
| 12 | +] |
| 13 | +description = "Gaussian Mixture Regression" |
| 14 | +requires-python = ">=2.7" |
| 15 | +license = "BSD-3-Clause" |
| 16 | +classifiers = [ |
| 17 | + "Intended Audience :: Science/Research", |
| 18 | + "Intended Audience :: Developers", |
| 19 | + "Programming Language :: Python", |
| 20 | + "Topic :: Software Development", |
| 21 | + "Topic :: Scientific/Engineering", |
| 22 | + "Operating System :: Microsoft :: Windows", |
| 23 | + "Operating System :: POSIX", |
| 24 | + "Operating System :: Unix", |
| 25 | + "Operating System :: MacOS", |
| 26 | + "Programming Language :: Python :: 2", |
| 27 | + "Programming Language :: Python :: 2.7", |
| 28 | + "Programming Language :: Python :: 3", |
| 29 | + "Programming Language :: Python :: 3.4", |
| 30 | + "Programming Language :: Python :: 3.5", |
| 31 | + "Programming Language :: Python :: 3.6", |
| 32 | + "Programming Language :: Python :: 3.7", |
| 33 | + "Programming Language :: Python :: 3.8", |
| 34 | + "Programming Language :: Python :: 3.9", |
| 35 | + "Programming Language :: Python :: 3.10", |
| 36 | + "Programming Language :: Python :: 3.11", |
| 37 | + "Programming Language :: Python :: 3.12", |
| 38 | + "Programming Language :: Python :: 3.13", |
| 39 | +] |
| 40 | +dependencies = ["numpy", "scipy"] |
| 41 | +readme = "README.rst" |
| 42 | +dynamic = ["version"] |
| 43 | + |
| 44 | +[project.optional-dependencies] |
| 45 | +all = ["matplotlib", "scikit-learn", "svgpathtools"] |
| 46 | +test = ["pytest", "pytest-cov"] |
| 47 | +doc = ["pdoc3"] |
| 48 | + |
| 49 | +[project.urls] |
| 50 | +Homepage = "https://github.com/AlexanderFabisch/gmr" |
| 51 | +Issues = "https://github.com/AlexanderFabisch/gmr/issues" |
| 52 | + |
| 53 | +[tool.setuptools.packages.find] |
| 54 | +where = ["."] |
| 55 | +include = ["gmr"] |
| 56 | + |
| 57 | +[tool.setuptools.dynamic] |
| 58 | +version = {attr = "gmr.__version__"} |
| 59 | +readme = {file = ["README.rst"]} |
0 commit comments