-
Notifications
You must be signed in to change notification settings - Fork 26
/
pyproject.toml
42 lines (38 loc) · 1.4 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
[build-system]
requires = ["setuptools", "setuptools-scm", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "mogutda"
version = "0.4.3"
authors = [
{name = "Kwan Yuet Stephen Ho", email = "[email protected]"}
]
description = "Topological Data Analysis in Python"
readme = {file = "README.md", content-type = "text/markdown"}
license = {text = "MIT"}
keywords = ["mogutda", "numerical methods", "topology", "data", "algebraic topology"]
requires-python = ">=3.8"
classifiers = [
"Topic :: Scientific/Engineering :: Mathematics",
"Topic :: Scientific/Engineering :: Physics",
"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",
"License :: OSI Approved :: MIT License",
"Intended Audience :: Developers",
"Intended Audience :: Education",
"Intended Audience :: Information Technology",
"Intended Audience :: Science/Research"
]
dependencies = ["numpy>=1.16.0", "scipy>=1.10.0", "networkx>=2.0", "matplotlib>=3.3.0"]
[project.urls]
Documentation = "https://mogutda.readthedocs.io"
Repository = "https://github.com/stephenhky/MoguTDA"
Issues = "https://github.com/stephenhky/MoguTDA/issues"
[tool.setuptools]
packages = ["mogutda"]
zip-safe = false
[project.optional-dependencies]
test = ["unittest"]