-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
71 lines (61 loc) · 1.97 KB
/
pyproject.toml
File metadata and controls
71 lines (61 loc) · 1.97 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
60
61
62
63
64
65
66
67
68
69
70
71
# https://packaging.python.org/ja/latest/guides/writing-pyproject-toml/
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "ternary-diagram"
dynamic = ["version"]
dependencies = ["numpy >=1.20", "matplotlib"]
requires-python = ">= 3.8"
authors = [{ name = "yu9824" }]
maintainers = [{ name = "yu9824" }]
description = ""
readme = { file = "README.md", content-type = "text/markdown" }
license = { file = "LICENSE" }
keywords = []
# https://pypi.org/classifiers/
classifiers = [
"Programming Language :: Python :: 3",
"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",
"License :: OSI Approved :: MIT License",
"Topic :: Scientific/Engineering :: Chemistry",
"Topic :: Scientific/Engineering :: Visualization",
] # https://pypi.org/classifiers/
[project.optional-dependencies]
test = ["pytest", "pandas"]
dev = ["build", "jupyter", "pandas"]
optional = ["colorlog", "tqdm"]
docs = [
"sphinx",
"sphinx_rtd_theme",
"sphinx-markdown-tables",
"recommonmark",
"sphinx-multiversion",
]
gui = ["TkEasyGUI"]
[project.urls]
Homepage = "https://github.com/yu9824/ternary-diagram"
Documentation = "https://yu9824.github.io/ternary-diagram/"
PyPI = "https://pypi.org/project/ternary-diagram/"
Source = "https://github.com/yu9824/ternary-diagram"
Tracker = "https://github.com/yu9824/ternary-diagram/issues"
[project.scripts]
ternary-diagram = "ternary_diagram.__main__:entrypoint"
# [project.gui-scripts]
# ternary-diagram-gui = "ternary_diagram:main_gui"
[tool.setuptools]
package-dir = { "" = "src" }
[tool.setuptools.dynamic]
version = { attr = "ternary_diagram.__version__" }
[tool.setuptools.packages.find]
where = ["src/"]
[tool.ruff]
line-length = 79
indent-width = 4
[tool.ruff.lint]
unfixable = ["F401"]