-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
76 lines (69 loc) · 1.68 KB
/
pyproject.toml
File metadata and controls
76 lines (69 loc) · 1.68 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
69
70
71
72
73
74
75
76
[tool.poetry]
name = "fast-s3"
version = "0.1.0"
description = "Download images from s3 fast"
authors = ["NextML AB"]
readme = "README.md"
repository = "https://github.com/nextml-code/fast-s3"
# some classifiers are added automatically, see https://python-poetry.org/docs/pyproject/#classifiers
classifiers = [
"Development Status :: 3 - Alpha",
"Environment :: Other Environment",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Software Development",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Libraries :: Python Modules"
]
packages = [
{ include = "fast_s3" },
]
[tool.poetry.dependencies]
python = "^3.8,<3.11"
boto3 = "^1.34.155"
botocore = "^1.34.155"
pydantic = "2.*.*"
[tool.poetry.dev-dependencies]
Pillow = "^9.0.0"
tqdm = "^4.62.3"
click = "^7.1.2"
pylint = "^2.6.0"
flake8 = "^3.8.4"
black = "^20.8b1"
pytest = "^6.1.2"
notebook = "^5.7.8"
jupyter_contrib_nbextensions = "^0.5.1"
ipykernel = "^5.4.3"
ipywidgets = "^7.6.3"
[tool.poetry.group.dev.dependencies]
pydantic-settings = "^2.2.1"
[tool.isort]
skip = ["__init__.py"]
extend_skip_glob = ["notebooks/*.py"]
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.black]
line-length = 88
target-version = ['py38']
include = '\.pyi?$'
exclude = '''
(
/(
\.eggs
| \.git
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| _build
| buck-out
| build
| dist
)/
)
'''