-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
36 lines (28 loc) · 822 Bytes
/
pyproject.toml
File metadata and controls
36 lines (28 loc) · 822 Bytes
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
[tool.poetry]
name = "advarchs"
version = "v0.1.7"
description = "Data retrieval from remote archives"
authors = [
"Dauren Sdykov <elessarelfstone@mail.ru>"
]
license = "Apache-2.0"
readme = "README.rst"
repository = "https://github.com/elessarelfstone/advarchs"
keywords = ["archive", "transfer", "zip", "rar", "advarchs"]
classifiers = [
"Topic :: System :: Archiving",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7"
]
[tool.poetry.dependencies]
python = "^3.5"
requests = "^2.22"
tomlkit = "^0.5.5"
[tool.poetry.dev-dependencies]
pytest = "^3.0"
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"