-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
51 lines (46 loc) · 1.16 KB
/
pyproject.toml
File metadata and controls
51 lines (46 loc) · 1.16 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
[build-system]
requires = ["setuptools", "setuptools-scm", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "scoped-functions"
description = "Utility to run code at function exit"
version = "1.0.0"
readme = "README.md"
requires-python = ">=3.8"
license = {file = "LICENSE"}
authors = [
{name = "Intel Corporation"},
{name = "CVAT.ai Corporation"},
{name = "Roman Donchenko"},
{name = "Maxim Zhiltsov", email="zhiltsov.max35@gmail.com"},
]
maintainers = [
{name = "Maxim Zhiltsov", email = "zhiltsov.max35@gmail.com"}
]
keywords = [
"context managers", "RAII", "rollback", "cleanup", "function exit",
"object lifetime", "utility", "library"
]
classifiers = [
"Development Status :: 4 - Beta",
"Operating System :: OS Independent",
'License :: OSI Approved :: MIT License',
"Programming Language :: Python",
]
dependencies = [
"attrs>=21.2",
]
[project.optional-dependencies]
dev = [
"black",
"isort",
]
[project.urls]
repository = "https://github.com/zhiltsov-max/scoped"
[tool.isort]
profile = "black"
forced_separate = ["tests"]
line_length = 100
[tool.black]
line-length = 100
target-version = ['py38']