-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
55 lines (49 loc) · 1.36 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
[project]
name = "pyfetch_mimic"
version = "2024.06.14"
authors = [
{name="darrida", email="[email protected]"}
]
description = "This is a module that mimics pyodide.http.pyfetch to enable simpler development by using one set of http calls for both local and pyodide executions."
readme = "README.md"
dependencies = [
'shiny',
'httpx',
]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
[project.optional-dependencies]
tests = [
'fastapi',
'pytest',
'pytest-asyncio',
'robotframework',
'robotframework-dependencylibrary',
'robotframework-pythonlibcore',
'robotframework-seleniumlibrary',
'robotframework-stacktrace',
'selenium',
'seleniumbase',
'coverage',
'shinylive'
]
[project.urls]
Homepage = "https://github.com/darrida/py-shinylive-pyfetch-mimic"
Issues = "https://github.com/darrida/py-shinylive-pyfetch-mimic/issues"
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[tool.ruff]
line-length = 120
extend-exclude = [".venv", "*.robot"]
[tool.ruff.lint]
extend-select = ["S", "I"] # bandit (S), isort (I)
[tool.ruff.lint.isort]
extra-standard-library = []
known-first-party = []
known-third-party = []
# relative-imports-order = "closest-to-furthest"
# required-imports = ["from __future__ import annotations"]