-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathpyproject.toml
More file actions
75 lines (65 loc) · 2.11 KB
/
pyproject.toml
File metadata and controls
75 lines (65 loc) · 2.11 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
[build-system]
requires = ["setuptools>=64.0.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "universalpython"
version = "0.5.1"
authors = [
{name = "Saad Bazaz", email = "saadbazaz@hotmail.com"},
]
description = "UniversalPython - Write Python in your native language"
readme = "README.md"
requires-python = ">=3.7"
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: Education",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Topic :: Software Development :: Internationalization",
"Topic :: Software Development :: Interpreters",
]
keywords = ["i18n", "localization", "programming-language"]
dependencies = [
"ply>=3.11",
"PyYAML>=6.0",
"Unidecode>=1.3.6",
]
[project.urls]
Homepage = "https://universalpython.github.io"
Repository = "https://github.com/UniversalPython/UniversalPython"
Issues = "https://github.com/UniversalPython/UniversalPython/issues"
[tool.setuptools]
# If your package is in a 'src' directory:
# package-dir = {"" = "src"}
packages = ["universalpython"]
[tool.setuptools.package-data]
universalpython = ["languages/**/*.yaml", "modes/*.py"]
[project.scripts]
universalpython = "universalpython.universalpython:main"
[tool.semantic_release]
version_toml = ["pyproject.toml:project.version"]
upload_to_pypi = false
tag_format = "v{version}"
build_command = "bash ./utils/build_package.sh"
commit_parser = "conventional"
major_on_zero = true
allow_zero_version = true
prerelease_token = "b"
changelog_file = "./CHANGELOG.md"
[tool.semantic_release.commit_parser_options]
allowed_tags = ["feat", "fix", "docs", "style", "refactor", "perf", "test", "build", "ci", "chore"]
minor_tags = ["feat"]
patch_tags = ["fix", "perf"]
parse_squash_commits = true
ignore_merge_commits = true
[tool.semantic_release.changelog.default_templates]
changelog_file = "./CHANGELOG.md"
output_format = "md"
[tool.semantic_release.branches.release]
match = "release"
prerelease = false
[tool.semantic_release.branches.main]
match = "main"
prerelease = true