This repository was archived by the owner on Apr 25, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
109 lines (99 loc) · 2.72 KB
/
pyproject.toml
File metadata and controls
109 lines (99 loc) · 2.72 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
[project]
name = "I-Language"
version = "0.0.9"
authors = [
{ name="ElBe-Plaq", email="elbe.dev.plaq@gmail.com" },
{ name="MasterOktagon" },
{ name="Ranastra" }
]
description = "The I programming language is a high level programming language written in pure python."
readme = ".github/README.md"
requires-python = ">=3.7"
keywords=[
"i language",
"programming-language",
"language"
]
license = { file = "LICENSE" }
classifiers = [
"Development Status :: 2 - Pre-Alpha",
"Framework :: Pytest",
"Programming Language :: Python",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: Implementation :: CPython",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Typing :: Typed",
]
dependencies = [
# Keep up to date with requirements.txt
"setuptools==67.7.1",
"typing_extensions>=4.5.0"
]
[project.urls]
"Homepage" = "https://github.com/I-Language-Development/i-language"
"Bug Tracker" = "https://github.com/I-Language-Development/i-language/issues"
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project.optional-dependencies]
dev = [
# Keep up to date with dev-requirements.txt
"autopep8==2.0.2",
"bandit==1.7.5",
"black==23.3.0",
"build==0.10.0",
"mypy==1.2.0",
"pipreqs==0.4.13",
"pre-commit==3.2.2; python_version>='3.8'",
"pylint==2.17.2",
"pylint-secure-coding-standard==1.4.1",
"pytest==7.3.1",
"pytest-cov==4.0.0",
"pytest-pretty==1.2.0",
"ruff==0.0.262",
"twine==4.0.2",
]
docs = [
# Keep up to date with doc-requirements.txt
"mkdocstrings[python]==0.21.2",
"mkdocs-material==9.1.6",
"mkdocs-section-index==0.3.5",
]
[tool.black]
line-lenghth = 100
target-version = ["py37", 'py38','py39','py310', "py311"]
[tool.mypy]
check_untyped_defs = true
python_version = "3.7"
[tool.pylint.main]
exit-zero = true
ignore-patterns = ['__init__.py']
load-plugins = [
"pylint.extensions.check_elif",
"pylint.extensions.code_style",
"pylint.extensions.empty_comment",
"pylint.extensions.mccabe",
"pylint.extensions.no_self_use",
"pylint.extensions.private_import",
"pylint.extensions.typing",
"pylint_secure_coding_standard"
]
output-format="colorized"
py-version = "3.7"
recursive=true
[tool.pylint.format]
max-line-length = 100
[tool.pylint."messages control"]
disable = ["C0103", "C8008"]
[tool.pytest.ini_options]
testpaths = [
"ilanguage/Tests",
]
[tool.ruff]
line-length = 100