-
Notifications
You must be signed in to change notification settings - Fork 0
/
project.toml
39 lines (34 loc) · 994 Bytes
/
project.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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "mtbp3"
version = "0.2.22"
dependencies = [
"pathlib",
"pandas",
]
requires-python = ">=3.8"
authors = [
{name = "Y. Hsu", email = "[email protected]"},
]
maintainers = [
{name = "Y. Hsu", email = "[email protected]"},
]
description = "My tool box in Python 3"
readme = "README.md"
license = {file = "LICENSE"}
keywords = ["general tool box"]
classifiers = [
"Development Status :: 3 - Alpha",
"Programming Language :: Python",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Intended Audience :: Developers",
"Topic :: Software Development :: Build Tools",
]
[project.urls]
Homepage = "https://github.com/yh202109/mtbp3"
Documentation = "https://github.com/yh202109/mtbp3/docs"
Repository = "https://github.com/yh202109/mtbp3.git"
"Bug Tracker" = "https://github.com/yh202109/mtbp3/issues"
Changelog = "https://github.com/yh202109/mtbp3/main/CHANGELOG.md"