-
Notifications
You must be signed in to change notification settings - Fork 6
/
pyproject.toml
27 lines (22 loc) · 1011 Bytes
/
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
[tool.poetry]
name = "speedcopy"
version = "2.1.5"
description = "Replacement or alternative for python copyfile() utilizing server side copy on network shares for faster copying."
authors = ["Ondrej Samohel <[email protected]>"]
license = "MIT License"
[tool.poetry.dependencies]
python = ">=2.7"
setuptools = "*"
pysendfile = {version = "^2.0.1", markers = "(sys_platform == 'linux' or sys_platform == 'darwin') and python_version ~= '2.7'"}
[tool.poetry.dev-dependencies]
# pytest should be here, but since it is very difficult to
# support py27 with it, we are not defining it here and it
# must be handled manually if needed.
# pytest = "*"
# this is used only in tests to check if we can deal with extended filesystem attribute
# there is issue with VS 2019 and later with this package so it is commented out.
# is there any other python package to set extended attributes on filesystem?
# pyxattr = "^0.8"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"