-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpyproject.toml
72 lines (65 loc) · 1.85 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
[tool.poetry]
name = "autorequests"
version = "2.1.0"
description = "Generate Python code to recreate a request from your browser."
authors = ["Hexiro"]
license = "MIT"
readme = "README.md"
homepage = "https://github.com/Hexiro/autorequests"
repository = "https://github.com/Hexiro/autorequests"
classifiers = [
"Environment :: Console",
"Intended Audience :: Developers",
"Natural Language :: English",
"Topic :: Software Development :: Libraries :: Python Modules",
"License :: OSI Approved :: MIT License",
"Operating System :: MacOS",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX :: Linux",
"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",
"Typing :: Typed",
]
[tool.poetry.dependencies]
python = "^3.7"
rich = "^12.5.1"
rich-click = "^1.5.2"
requests-toolbelt = "^0.9.1"
pyperclip = "^1.8.2"
[tool.poetry.scripts]
autorequests = "autorequests.__main__:cli"
[tool.poetry.group.dev.dependencies]
aiohttp = "^3.8.3"
httpx = "^0.23.0"
requests = "^2.26.0"
mypy = "^0.991"
isort = "^5.11.4"
black = "^22.12.0"
flake8 = "^5.0.4"
flake8-future-annotations = "^0.0.5"
pytest = "^7.2.0"
tox = "^3.26.0"
tox-poetry = "^0.4.1"
pre-commit = "^2.20.0"
types-requests = "^2.28.10"
[tool.black]
line-length = 121
target-version = ["py37", "py38", "py39", "py310", "py311"]
[tool.isort]
profile = "black"
line_length = 121
combine_as_imports = true
combine_star = true
[tool.mypy]
python_version = 3.7
warn_return_any = true
warn_unused_configs = true
show_error_codes = true
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"