-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
39 lines (36 loc) · 1.18 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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "DiaModality"
dynamic = ["version"]
license = {file = "LICENSE"}
authors = [
{ name="konung-yaropolk", email="[email protected]" },
]
description = "Tool to plot modality vector diagrams"
keywords = ["Visualization", "Science", "Plotting", "Matplotlib"]
readme = {file = "README.md", content-type = "text/markdown"}
requires-python = ">=3.10"
classifiers = [
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.12",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"Natural Language :: English",
"Topic :: Scientific/Engineering :: Visualization",
]
dependencies = [
"numpy",
"matplotlib",
"scsv>=0.1.4",
]
[project.urls]
Homepage = "https://github.com/konung-yaropolk/DiaModality"
Repository = "https://github.com/konung-yaropolk/DiaModality.git"
Issues = "https://github.com/konung-yaropolk/DiaModality/issues"
[tool.setuptools.dynamic]
version = {attr = "DiaModality.__version__"}