-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
68 lines (59 loc) · 1.58 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
[metadata]
name = shine-mirrors
version = 0.0.0
description = A task scheduler for mirrors
long_description = file: README.md
long_description_content_type = text/markdown
author = TechCiel
author_email = [email protected]
license = AGPL-3.0
url = https://ciel.dev/shine/
project_urls =
Source Code = https://github.com/JLULUG/shine/tree/core
Issue Tracker = https://github.com/JLULUG/shine/issues
classifiers =
Development Status :: 2 - Pre-Alpha
Environment :: Console
Environment :: Plugins
Framework :: AsyncIO
Intended Audience :: Developers
Intended Audience :: System Administrators
License :: OSI Approved :: GNU Affero General Public License v3
Natural Language :: English
Operating System :: POSIX :: Linux
Programming Language :: Python :: 3.9
Topic :: System :: Archiving :: Mirroring
Topic :: System :: Installation/Setup
Topic :: System :: Systems Administration
Typing :: Typed
[options]
packages =
shine
shine.helpers
include_package_data = True
python_requires = >= 3.9
zip_safe = False
[options.package_data]
* =
py.typed
[options.entry_points]
console_scripts =
shined = shine.daemon:main
shine = shine.__main__:main
[mypy]
files = shine
python_version = 3.9
strict = True
implicit_reexport = True
[pylint.MASTER]
py-version = 3.9
disable = W1203, C0114, C0115, C0116
[pylint.BASIC]
good-names-rgxs = [a-z][a-z0-9]?$
function-rgx = _?([a-z][a-z0-9_]*|[A-Z][A-Za-z0-9_]*)$
[pylint.FORMAT]
expected-line-ending-format = LF
[pylint.STRING]
check-quote-consistency = yes
[pylint.LOGGING]
logging-format-style = new