-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
58 lines (51 loc) · 1.63 KB
/
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
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
[project]
name = "aiostd"
version = "0.0.1"
description = "A simple library for asynchronous communication with standard I/O."
requires-python = ">=3.8"
authors = [
{ name="Ali Aliyev", email="[email protected]" },
]
readme = "README.md"
keywords = ["asyncio", "stdin", "stdout"]
classifiers = ['Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Programming Language :: Python',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Framework :: AsyncIO',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Utilities']
dependencies = [
"typing_extensions"
]
[project.optional-dependencies]
dev = [
"pre-commit",
"wheel",
"twine",
"build",
"pytest",
"pytest-cov"
]
[tool.setuptools]
packages = ["aiostd"]
[project.urls]
"Homepage" = "https://github.com/aliev/aiostd"
"Bug Tracker" = "https://github.com/aliev/aiostd/issues"
[tool.isort]
profile = "black"
[tool.mypy]
warn_no_return = false
disallow_untyped_defs = false
allow_redefinition = true
[tool.flake8]
max-line-length = 120
[tool.pytest.ini_options]
addopts = "-s --strict-markers -vv --cache-clear --maxfail=1 --cov=aiostd --cov-report=term --cov-report=html --cov-branch --no-cov-on-fail"