-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
43 lines (37 loc) · 911 Bytes
/
pyproject.toml
File metadata and controls
43 lines (37 loc) · 911 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
37
38
39
40
41
42
43
[project]
name = 'ntelebot'
version = '0.4.6'
description = 'A simple implementation of https://core.telegram.org/bots/api.'
authors = [
{name = 'Daniel Reed', email = 'nmlorg@gmail.com'},
]
requires-python = '>=3.10'
dependencies = [
'requests',
]
[project.optional-dependencies]
dev = [
'pylint',
'pytest-cov',
'pytest',
'requests-mock',
]
[project.urls]
Homepage = 'https://github.com/nmlorg/ntelebot'
Issues = 'https://github.com/nmlorg/ntelebot/issues'
[tool.pylint.'MESSAGES CONTROL']
disable = [
'consider-using-ternary',
'duplicate-code',
'inconsistent-return-statements',
]
[tool.pytest.ini_options]
addopts = '-rN --cov=ntelebot --cov-report=html'
consider_namespace_packages = true
testpaths = ['ntelebot']
verbosity_assertions = 2
[tool.setuptools.packages.find]
include = ['ntelebot', 'ntelebot.*']
[tool.yapf]
based_on_style = 'google'
column_limit = 100