-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
62 lines (44 loc) · 1.21 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
[project]
name = "filesystem"
version = "0.1.0"
description = "FileSystem provides a basic file system abstraction with multiple back-end implementations"
readme = "README.md"
authors = [
{name = "Alexandros Tzannes", email = "[email protected]"},
{name = "Braxton McKee", email = "[email protected]"},
]
license = {text = "Apache-2.0"}
keywords = [""]
requires-python = ">=3.8"
dependencies = [
"boto3",
"paramiko",
"pyftpdlib",
"pytz",
]
[project.optional-dependencies]
dev = [
"black == 23.3.0",
"flake8 == 6.0.0",
"flaky",
"moto < 5.0.0",
"pre-commit",
"pytest",
"sftpserver @ git+https://github.com./APrioriInvestments/sftpserver.git@9f6893987448da731ee8fb73ef1d56fd4cce9c0e#egg=sftpserver",
]
[tool.black]
line-length = 95
target-version = ['py310']
include = [
"filesystem",
"tests",
]
# 'extend-exclude' excludes files or directories in addition to the defaults
extend-exclude = '''
# A regex preceded with ^/ will apply only to files and directories
# in the root of the project.
(
^/.venv # exclude a file named foo.py in the root of the project
| .*__pycache__/.* # exclude __pycache__ contents
)
'''