-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.cfg
60 lines (50 loc) · 1.12 KB
/
setup.cfg
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
59
60
[metadata]
name = passpobt
version = 0.1.0
author = Anton Orlov
author_email = [email protected]
description = Description of the passpobt project
long_description = file: README.md
long_description_content_type = text/markdown
url = https://github.com/veotani/passpobt
classifiers =
Development Status :: 3 - Alpha
Intended Audience :: Developers
License :: OSI Approved :: MIT License
Programming Language :: Python :: 3.10
[flake8]
max-line-length = 120
[pylint]
disable = missing-module-docstring, too-few-public-methods, invalid-name, unused-argument
max-line-length = 120
[mypy]
show_column_numbers = True
ignore_missing_imports = True
[isort]
line_length = 120
no_lines_before = LOCALFOLDER
lines_after_imports = 2
length_sort_straight = True
[pytest]
asyncio_mode=auto
[options]
packages = find:
python_requires = >=3.10
install_requires =
rich
python-dotenv
# Telegram
aiogram
# Google API dependencies
google-api-python-client
google-auth-httplib2
google-auth-oauthlib
[options.extras_require]
dev =
mypy
isort
flake8
pylint
test =
pytest
pytest-asyncio