-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.cfg
79 lines (68 loc) · 1.52 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
72
73
74
75
76
77
78
79
[metadata]
name = hashback
author = Philip Couling
author_email = couling@gmail.com
url = https://github.com/couling/BackupServer
description = Backup server and client which indexes files and directories by sha256sum to save space.
long_description = file: README.md, LICENCE.md
long_description_content_type = text/markdown
platform = any
license = MIT
classifiers =
License :: OSI Approved :: MIT License
Programming Language :: Python :: 3
Programming Language :: Python :: 3.8
[options]
zip_safe = True
include_package_data = False
package_dir =
=source
packages: find:
python_requires >= 3.8
install_requires =
pydantic
click
appdirs
python-dateutil
requests
[options.packages.find]
where = source
exclude =
tests*
[options.entry_points]
console_scripts =
hashback = hashback.cmdline:main
hashback-db-admin = hashback.db_admin.db_admin:main
hashback-basic-server = hashback.basic_auth.server:main [server]
[options.extras_require]
tests =
fastapi
uvicorn
python-multipart
asyncstdlib
pytest
pytest-asyncio
server =
python-multipart
fastapi
uvicorn
asyncstdlib
[tool:pytest]
asyncio_mode = auto
[pylint.MASTER]
extension-pkg-whitelist=pydantic
[pylint.'MESSAGES CONTROL']
disable=missing-module-docstring,
missing-class-docstring,
missing-function-docstring,
too-few-public-methods,
logging-fstring-interpolation,
[pylint.FORMAT]
max-line-length=120
[pylint.BASIC]
good-names=ex,
i,
j,
x,
y,
fd,