-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
73 lines (66 loc) · 1.59 KB
/
pyproject.toml
File metadata and controls
73 lines (66 loc) · 1.59 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
[tool.poetry]
name = "ce-lib-wizard"
version = "0.1.0"
description = "CLI tool to add libraries to Compiler Explorer"
authors = ["Compiler Explorer Contributors"]
readme = "README.md"
license = "MIT"
homepage = "https://github.com/compiler-explorer/ce-lib-wizard"
repository = "https://github.com/compiler-explorer/ce-lib-wizard"
keywords = ["compiler-explorer", "cli", "library"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
packages = [
{ include = "cli" },
{ include = "core" }
]
[tool.poetry.scripts]
ce-lib-wizard = "cli.main:main"
[tool.poetry.dependencies]
python = "^3.10"
click = "^8.1.0"
inquirer = "^3.2.0"
PyGithub = "^2.0.0"
colorama = "^0.4.6"
pydantic = "^2.0.0"
requests = "^2.31.0"
[tool.poetry.group.dev.dependencies]
pytest = "^7.4.0"
black = "^23.0.0"
pytype = "^2024.04.11"
ruff = "^0.1.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.black]
line-length = 100
target-version = ['py310']
[tool.ruff]
line-length = 100
target-version = "py310"
select = [
"E", # pycodestyle errors
"W", # pycodestyle warnings
"F", # pyflakes
"I", # isort
"B", # flake8-bugbear
"C4", # flake8-comprehensions
"UP", # pyupgrade
]
[tool.pytype]
python_version = "3.10"
inputs = [
"cli/",
"core/"
]
disable = [
"import-error",
"module-attr"
]