forked from luffah/nextcloud-API
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
71 lines (59 loc) · 1.6 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
61
62
63
64
65
66
67
68
69
70
71
[metadata]
name = nextcloud-api-wrapper
version = 0.2.1.5
description= Python wrapper for NextCloud api
long_description = file: README.rst
keywords = requests, api, wrapper, nextcloud, owncloud
license = GPLv3
# url = https://nextcloud-api.readthedocs.io
Source = https://github.com/luffah/nextcloud-API
project_urls =
# Documentation = https://nextcloud-api.readthedocs.io
Source = https://github.com/luffah/nextcloud-API
# author = EnterpriseyIntranet
author = Luffah
author_email = [email protected]
platforms = any
classifiers =
Programming Language :: Python
Programming Language :: Python :: 2
Programming Language :: Python :: 3
Development Status :: 4 - Beta
Environment :: Web Environment
Intended Audience :: Developers
Topic :: Internet :: WWW/HTTP
Topic :: Software Development :: Libraries :: Python Modules
License :: OSI Approved :: GNU General Public License (GPL)
Operating System :: OS Independent
[options]
zip_safe = False
include_package_data = True
install_requires =
requests >=2.0.1, <3.0
six
[options.extras_require]
tests =
pytest >= 5.2
#[tool:pytest]
#addopts = --verbose --pylint-rcfile=setup.cfg
# --pylint --pycodestyle
[pycodestyle]
max-line-length=120
ignore=E4,E7,W3
# Configuration for pylint
[MASTER]
ignore=CVS
good-names=logger,e,i,j,n,m,f,_
[MESSAGES CONTROL]
disable=all
enable=unused-import,
fixme,
useless-object-inheritance,
unused-variable,
unused-argument,
unexpected-keyword-arg,
string,
unreachable,
invalid-name,
logging-not-lazy,
unnecesary-pass