-
Notifications
You must be signed in to change notification settings - Fork 19
/
pyproject.toml
52 lines (43 loc) · 1.31 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
[tool.poetry]
name = "rajinipp"
version = "0.3.1"
description = "Rajini++ (rajiniPP) is a programming language based on the iconic dialogues by Rajinikanth."
authors = ["Aadhithya Sankar <[email protected]>"]
license = "MIT License"
readme = "README.md"
homepage = "https://github.com/aadhithya/rajiniPP"
repository = "https://github.com/aadhithya/rajiniPP"
documentation = "https://github.com/aadhithya/rajiniPP/wiki"
keywords = ["esolang", "interpreter", "rply", "rajinipp", "superstar"]
classifiers = [
"Topic :: Software Development :: Interpreters",
"Topic :: Software Development :: Libraries :: Python Modules"
]
[tool.poetry.dependencies]
python = ">=3.8, <3.11"
rply = "^0.7.8"
munch = "^2.5.0"
loguru = "^0.6.0"
typer = "^0.4.1"
[tool.poetry.dev-dependencies]
poetry = "^1.1.13"
commitizen = "^2.24.0"
pre-commit = "^2.19.0"
pytest = "^7.1.2"
pytest-cov = "^3.0.0"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.scripts]
rajinipp = "rajinipp.__main__:app"
[tool.semantic_release]
version_variable = [
"pyproject.toml:version",
"rajinipp/__init__.py:__version__"
]
branch = "master"
upload_to_pypi = true
upload_to_release = true
build_command = "pip install poetry && poetry build"
commit_subject = "Bump to {version}"
commit_message = "Bump to {version}"