forked from hexlet-components/python-immutable-fs-trees
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
32 lines (28 loc) · 857 Bytes
/
pyproject.toml
File metadata and controls
32 lines (28 loc) · 857 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
[tool.poetry]
name = "hexlet-immutable-fs-trees"
version = "0.1.7"
description = "File System Tree"
authors = ["Hexlet Team <info@hexlet.io>"]
license = "ISC"
readme = "README.md"
homepage = "https://github.com/hexlet-components/python-immutable-fs-trees"
repository = "https://github.com/hexlet-components/python-immutable-fs-trees"
classifiers = [
"Intended Audience :: Education",
"License :: OSI Approved :: ISC License (ISCL)",
"Programming Language :: Python :: 3.6",
"Topic :: Education",
"Topic :: Software Development :: Libraries",
"Typing :: Typed",
]
packages = [
{ include = "hexlet/fs/*.py", from = "src" },
]
[tool.poetry.dependencies]
python = "^3.6"
[tool.poetry.dev-dependencies]
flake8 = "^3.8.4"
pytest = "^6.2.1"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"