-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
54 lines (46 loc) · 1.06 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
[metadata]
name = nctalk-client
version = 0.0.1
description = Desktop Client for Nextcloud Talk
long_description = file: README.md
url: https://github.com/toxick/nctalk-client
classifiers =
Development Status :: 2 - Pre-Alpha
Framework :: Flake8
Intended Audience :: End Users/Desktop
License :: OSI Approved :: GNU General Public License v3
Natural Language :: English
Operating System :: POSIX :: Linux
Programming Language :: Python :: 3.10
[options]
packages = find:
include_package_data = True
test_suite = tests/
install_requires =
nextcloud_async
pillow
httpx
platformdirs
aiofiles
ttkwidgets
[options.extras_require]
test = mock
[options.packages.find]
exclude =
tests
dist
build
[options.entry_points]
console_scripts =
nctalk = nctalk_client:run
[pycodestyle]
max-line-length = 95
[flake8]
exclude = .svn,CVS,.bzr,.hg,.git,__pycache__,.tox,.eggs,*.egg,node_modules,*venv*
max-line-length = 95
count = true
showpep8 = false
show-source = false
statistics = true
[pydocstyle]
ignore = D107,D203,D213,D105