-
Notifications
You must be signed in to change notification settings - Fork 89
/
Copy pathpyproject.toml
107 lines (97 loc) · 3.13 KB
/
pyproject.toml
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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
[build-system]
requires = ["setuptools>=61.2", "vstcompile~=3.0"]
build-backend = "setuptools.build_meta"
[project]
name = "polemarch"
authors = [{name = "VST Consulting", email = "[email protected]"}]
license = {text = "AGPLv3+"}
description = "Polemarch is ansible based service for orchestration infrastructure."
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Web Environment",
"Framework :: Django",
"Framework :: Django :: 5.1",
"Operating System :: POSIX",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: Implementation :: CPython",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Internet :: WWW/HTTP :: Dynamic Content",
"Topic :: Software Development :: User Interfaces",
"Topic :: System :: Systems Administration",
"Topic :: Utilities",
]
requires-python = ">=3.10"
dynamic = ["version", "dependencies", "optional-dependencies"]
[project.urls]
Home = "https://gitlab.com/vstconsulting/polemarch"
"Web Site" = "https://polemarch.org/"
"Issue Tracker" = "https://gitlab.com/vstconsulting/polemarch/issues"
"Source Code" = "https://gitlab.com/vstconsulting/polemarch"
Releases = "https://github.com/vstconsulting/polemarch/releases"
DockerHub = "https://hub.docker.com/r/vstconsulting/polemarch/"
Documentation = "https://about.polemarch.org/"
[project.readme]
file = "README.rst"
content-type = "text/x-rst"
[project.scripts]
polemarchctl = "polemarch:cmd_execution"
[tool.setuptools]
zip-safe = false
include-package-data = true
license-files = ["LICENSE"]
[tool.setuptools.dynamic]
version = {attr = "polemarch.__version__"}
[tool.setuptools.packages.find]
include = ['polemarch', 'polemarch.*']
namespaces = false
[tool.flake8]
ignore = "E221,E222,E121,E123,E126,E226,E24,E704,E116,E731,E722,E741,W503,W504,B001,B008,B010,B023,C812,C815,CFQ002,CFQ004,B019,I100,DJ01"
exclude = "./polemarch/*/migrations/*,./polemarch/main/settings*.py,.tox/*,./etc/*,./*/__init__.py,*__main.py,./t_openstack.py,./polemarch/projects/*,./env/*,tests.py"
max-line-length = 120
import-order-style = 'pep8'
[tool.coverage.run]
# branch = true
source = [
'polemarch',
]
parallel = true
concurrency = [
'thread',
'multiprocessing',
]
omit = [
'.tox/*',
'*/main/management/daemon.py',
'*/*/migrations/*',
'*/main/wsgi.py',
'*/wsgi.py',
'*/manage.py',
'*ihsctl',
'*setup.py',
'test.py',
'upload_big.py',
'polemarch/__init__.py',
'polemarch/__main__.py',
'polemarch/wapp.py',
'polemarch/main/management/commands/webserver.py',
'polemarch/main/tests/repos.py',
'polemarch/main/tests/tasks.py',
'polemarch/main/tests/project.py',
'polemarch/main/tests/ansible.py',
'polemarch/api/v1/*',
'*celery_beat_scheduler.py',
]
[tool.coverage.report]
fail_under = 100
show_missing = true
exclude_lines = [
'pragma: no cover',
'nocv',
'noce',
'raise NotImplementedError',
]