-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
59 lines (47 loc) · 1.32 KB
/
Copy pathpyproject.toml
File metadata and controls
59 lines (47 loc) · 1.32 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
[project]
name = "android_file_handler"
version = "0.1.1"
description = "An Android file transfer util for Windows and Linux. MacOS support may be added later."
authors = [
{ name = "Jason Ross", email = "51939451+JMR-dev@users.noreply.github.com" },
]
license = "MIT"
readme = "README.md"
requires-python = ">=3.13, <3.15"
dependencies = ["requests>=2.32.4,<3.0.0", "platformdirs>4.0.0,<5.0.0"]
[tool.poetry.dependencies]
python = ">=3.13, <3.15"
requests = "^2.32.5"
platformdirs = "^4.5.0"
urllib3 = "^2.0"
[build-system]
requires = ["poetry-core>=2.0.0,<3.0.0"]
build-backend = "poetry.core.masonry.api"
[project.scripts]
# Main application entry point
android-file-handler = "src.main:main"
[tool.poetry.group.dev.dependencies]
black = "^26.3.1"
flake8 = "^7.3.0"
mypy = "^1.18.2"
pre-commit = "^4.3.0"
[tool.poetry.group.test.dependencies]
pytest = "^9.0.2"
pytest-mock = "^3.15.1"
pytest-cov = "^7.0.0"
[tool.poetry.group.build.dependencies]
pyinstaller = "^6.1.0"
[tool.black]
line-length = 88
target-version = ['py313', 'py314']
[tool.mypy]
python_version = "3.13"
warn_return_any = true
warn_unused_configs = true
disallow_untyped_defs = true
[tool.poetry]
package-mode = false
[tool.setuptools.packages.find]
where = ["src"] # or wherever your source code lives
[tool.setuptools.package-dir]
"" = "src" # if using src layout