forked from line/promgen
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
90 lines (81 loc) · 2.19 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
80
81
82
83
84
85
86
87
88
89
90
[metadata]
name = promgen
author = LINE Corporation
author_email = [email protected]
long_description_content_type = text/markdown
long_description = file:README.md
url = https://github.com/line/promgen
version = attr: promgen.version.__version__
classifiers =
Environment :: Web Environment
Framework :: Django
Intended Audience :: Developers
Operating System :: OS Independent
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3
Programming Language :: Python
Topic :: Internet :: WWW/HTTP :: Dynamic Content
Topic :: Internet :: WWW/HTTP
project_urls =
Source = https://github.com/line/promgen
Tracker = https://github.com/line/promgen/issues
Documentation = https://line.github.io/promgen/
[options]
packages = find:
install_requires =
atomicwrites==1.3.0
celery==4.3.0
django-environ
django-filter
Django>=3.2,<4.0
djangorestframework==3.11.2
envdir
kombu==4.6.3
prometheus-client
python-dateutil==2.8.0
pyyaml==5.4
requests==2.25.1
social-auth-app-django >= 2.0.0
include_package_data = True
[options.packages.find]
exclude = test
[options.entry_points]
console_scripts =
promgen = promgen.manage:main
promgen.discovery =
promgen = promgen.discovery.default:DiscoveryPromgen
promgen.notification =
email = promgen.notification.email:NotificationEmail
linenotify = promgen.notification.linenotify:NotificationLineNotify
slack = promgen.notification.slack:NotificationSlack
user = promgen.notification.user:NotificationUser
webhook = promgen.notification.webhook:NotificationWebhook
[options.extras_require]
dev =
black
codecov
django-nose
flake8
nose-cov
unittest-xml-reporting
docs =
Sphinx
sphinxcontrib-httpdomain
mysql = mysqlclient==1.4.2
[nosetests]
cover-html = 1
cover-xml = 1
cover-html-dir = dist/cover
cover-package = promgen
with-coverage = 1
[flake8]
ignore = E501
exclude = migrations
[isort]
float_to_top = true
forced_separate = django,promgen
known_django = django
known_first_party = promgen
sections = FUTURE,STDLIB,DJANGO,THIRDPARTY,FIRSTPARTY,LOCALFOLDER
[codespell]
skip = *.min.js,*.min.css,*.css.map,.venv,dist,.git