-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
52 lines (44 loc) · 1.26 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 = "mul"
include = [{ path = "std", format = ["sdist", "wheel"] }]
version = "0.2.0"
description = "mul · My Useless Language, a simple interpreted programming language"
authors = ["Matteo Merola <[email protected]>"]
license = "MIT"
readme = "readme.md"
repository = "https://github.com/mattmezza/mul"
documentation = "https://github.com/mattmezza/mul/blob/main/readme.md"
keywords = ["programming-language", "language", "interpreted"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Intended Audience :: Education",
"License :: OSI Approved :: MIT License",
"Operating System :: MacOS",
"Programming Language :: Python :: 3.11",
"Topic :: Education",
]
[tool.poetry.urls]
"Bug Tracker" = "https://github.com/mattmezza/poetry/issues"
[tool.poetry.dependencies]
python = "^3.11"
[tool.poetry.group.dev.dependencies]
black = "^22.10.0"
isort = "^5.10.1"
flake8-pyproject = "^1.2.0"
flake8 = "^5.0.4"
[tool.poetry.scripts]
mul = "mul.__main__:main"
[tool.isort]
profile = "black"
[tool.black]
line-length = 79
[tool.flake8]
ignore = ['E231', 'E241']
per-file-ignores = [
'__init__.py:F401',
]
count = true
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"