-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
69 lines (58 loc) · 1.72 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
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
[project]
name = "rtflite"
version = "0.1.1"
description = "Lightweight RTF composer for Python"
authors = [
{ name = "Yilong Zhang", email = "elong0527@gmail.com" },
{ name = "Nan Xiao", email = "me@nanx.me" },
]
dependencies = [
"pydantic>=2.9.2",
"pandas>=2.2.3",
"numpy>=2.0.0",
"pillow>=11.0.0",
]
readme = "README.md"
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Intended Audience :: Healthcare Industry",
"Intended Audience :: Information Technology",
"Topic :: Text Processing",
"Topic :: Office/Business :: Office Suites",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
]
requires-python = ">= 3.10"
[project.urls]
Homepage = "https://pharmaverse.github.io/rtflite/"
Documentation = "https://pharmaverse.github.io/rtflite/"
Repository = "https://github.com/pharmaverse/rtflite"
Issues = "https://github.com/pharmaverse/rtflite/issues"
Changelog = "https://github.com/pharmaverse/rtflite/blob/main/CHANGELOG.md"
[build-system]
requires = ["hatchling==1.26.3"]
build-backend = "hatchling.build"
[tool.hatch.metadata]
allow-direct-references = true
[tool.hatch.build.targets.wheel]
packages = ["src/rtflite"]
[tool.rye]
managed = true
dev-dependencies = [
"pytest>=8.3.3",
"pytest-cov>=6.0.0",
"mkdocs>=1.6.1",
"mkdocs-autorefs==1.2.0",
"mkdocs-material>=9.5.45",
"mkdocstrings-python>=1.12.2",
"nbconvert>=7.16.4",
"jupyter>=1.1.1",
"ruff>=0.7.4",
"isort>=5.13.2",
]