forked from vahaah/django-sftp
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
68 lines (60 loc) · 1.57 KB
/
Copy pathpyproject.toml
File metadata and controls
68 lines (60 loc) · 1.57 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
[tool.poetry]
authors = ["Alex Vakhitov <alex@vakhitov.dev>"]
classifiers = [
"Development Status :: 3 - Alpha",
"Framework :: Django :: 4.2",
"Framework :: Django :: 5.0",
"Framework :: Django :: 5.1",
"Framework :: Django :: 5.2",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
]
description = "Django SFTP"
documentation = "https://django-sftp.readthedocs.io"
homepage = "https://github.com/vahaah/django-sftp"
license = "MIT"
name = "django-sftp"
readme = "README.md"
repository = "https://github.com/vahaah/django-sftp"
version = "0.2.2"
[tool.poetry.urls]
Changelog = "https://github.com/vahaah/django-sftp/releases"
[tool.poetry.dependencies]
asyncssh = "^2.18.0"
click = "^8.0"
python = ">=3.10,<4.0.0"
[tool.poetry.group.dev.dependencies]
bandit = "^1.7.0"
black = "^24.0"
coverage = {extras = ["toml"], version = "^7.0"}
django = "^5.2"
flake8 = "^7.0"
ipython = "^8.0"
mypy = "^1.0"
nox = "^2024.0"
pre-commit = "^4.0"
pylint = "^3.0"
pytest = "^8.0"
pytest-cov = "^6.0"
safety = "^3.0"
sphinx = "^8.0"
sphinx-autobuild = "^2024.0"
typeguard = "^4.0"
xdoctest = "^1.0"
pytest-django = "^4.9"
django-stubs = "^5.0"
[tool.poetry.scripts]
django-sftp = "django_sftp.__main__:main"
[tool.coverage.paths]
source = ["src", "*/site-packages"]
[tool.coverage.run]
branch = true
source = ["django_sftp"]
[tool.coverage.report]
fail_under = 50
show_missing = true
[build-system]
build-backend = "poetry.core.masonry.api"
requires = ["poetry-core>=1.0.0"]