-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
117 lines (102 loc) · 2.7 KB
/
pyproject.toml
File metadata and controls
117 lines (102 loc) · 2.7 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
[build-system]
requires = ["setuptools>=68", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "pythonnative"
version = "0.3.0"
description = "Cross-platform native UI toolkit for Android and iOS"
authors = [
{ name = "Owen Carey" }
]
readme = "README.md"
requires-python = ">=3.9"
license = { file = "LICENSE" }
classifiers = [
"Development Status :: 2 - Pre-Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Software Development :: User Interfaces",
]
dependencies = [
"requests>=2.31.0",
]
[project.optional-dependencies]
ios = [
"rubicon-objc>=0.4.6,<0.5.0",
]
docs = [
"mkdocs>=1.5",
"mkdocs-material[imaging]>=9.5",
"mkdocstrings[python]>=0.24",
]
dev = [
"black>=24.0",
"ruff>=0.5",
"mypy>=1.10",
"pytest>=8.0",
]
ci = [
"black>=24.0",
"ruff>=0.5",
"mypy>=1.10",
"pytest>=8.0",
]
[project.scripts]
pn = "pythonnative.cli.pn:main"
[project.urls]
Homepage = "https://github.com/pythonnative/pythonnative"
Repository = "https://github.com/pythonnative/pythonnative"
Issues = "https://github.com/pythonnative/pythonnative/issues"
Documentation = "https://docs.pythonnative.com/"
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools]
license-files = ["LICENSE*"]
# Include template directories inside the package so importlib.resources can find them
[tool.setuptools.package-data]
pythonnative = [
"templates/**",
]
[tool.ruff]
target-version = "py39"
line-length = 120
extend-exclude = [
"experiments",
"apps",
"templates",
"docs",
]
[tool.ruff.lint]
select = ["E", "F", "I"]
ignore = []
[tool.black]
line-length = 120
target-version = ['py39']
# ── Semantic Release ────────────────────────────────────────────────
[tool.semantic_release]
version_toml = ["pyproject.toml:project.version"]
version_variables = ["src/pythonnative/__init__.py:__version__"]
commit_message = "chore(release): v{version}"
tag_format = "v{version}"
major_on_zero = false
[tool.semantic_release.branches.main]
match = "main"
prerelease = false
[tool.semantic_release.changelog]
changelog_file = "CHANGELOG.md"
exclude_commit_patterns = [
"^chore\\(release\\):",
]
[tool.semantic_release.commit_parser_options]
allowed_tags = [
"build", "chore", "ci", "docs", "feat", "fix",
"perf", "refactor", "revert", "style", "test",
]
minor_tags = ["feat"]
patch_tags = ["fix", "perf"]