-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.cfg
65 lines (56 loc) · 1.43 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
[metadata]
name = whisper-blog-core
version = 0.0.5
description = A lightweight modularized blog engine
long_description = file: README.md
long_description_content_type = text/markdown
author = TechCiel
author_email = whisper@ciel.dev
license = AGPL-3.0
url = https://ciel.dev/whisper/
project_urls =
Source Code = https://github.com/TechCiel/whisper/tree/core
Issue Tracker = https://github.com/TechCiel/whisper/issues
classifiers =
Development Status :: 2 - Pre-Alpha
Environment :: Web Environment
Framework :: Flask
Intended Audience :: Developers
License :: OSI Approved :: GNU Affero General Public License v3
Natural Language :: English
Operating System :: OS Independent
Programming Language :: Python :: 3.9
Topic :: Internet :: WWW/HTTP :: Dynamic Content
Topic :: Internet :: WWW/HTTP :: WSGI :: Application
Typing :: Typed
[options]
packages =
whisper.core
namespace_packages =
whisper
include_package_data = True
install_requires =
Flask
python_requires = >= 3.9
zip_safe = False
[options.package_data]
* =
py.typed
*.sql
[mypy]
files = whisper
namespace_packages = True
explicit_package_bases = True
python_version = 3.9
strict = True
implicit_reexport = True
[pylint.MASTER]
py-version = 3.9
[pylint.BASIC]
good-names-rgxs = [a-z]
[pylint.FORMAT]
expected-line-ending-format = LF
[pylint.STRING]
check-quote-consistency = yes
[pylint.LOGGING]
logging-format-style = new