-
Notifications
You must be signed in to change notification settings - Fork 10
/
setup.cfg
122 lines (109 loc) · 2.74 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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
[aliases]
test = pytest
[coverage:report]
exclude_lines =
@abc.abstractmethod
@abc.abstractproperty
CancelledError
NotImplementedError
pragma: no cover
__repr__
__str__
fail_under = 98
precision = 2
show_missing = True
[coverage:run]
branch = True
source =
src
tests
[flake8]
ignore = E203,W503
max-line-length = 88
[isort]
multi_line_output = 3
profile = black
[metadata]
author = Usermodel @ Rambler&Co
author_email = um@rambler-co.ru
classifiers =
Development Status :: 4 - Beta
Environment :: Console
Intended Audience :: Developers
License :: OSI Approved :: MIT License
Natural Language :: English
Operating System :: OS Independent
Programming Language :: Python :: 3 :: Only
Topic :: Software Development
description = Scaraplate is a wrapper around cookiecutter which allows to repeatedly rollup project templates onto concrete projects.
license = MIT
license_files = LICENSE
long_description = file: README.md
long_description_content_type = text/markdown
maintainer = Kostya Esmukov
maintainer_email = kostya@esmukov.net
name = scaraplate
project_urls =
Docs = https://scaraplate.readthedocs.io/
Issue Tracker = https://github.com/rambler-digital-solutions/scaraplate/issues
Source Code = https://github.com/rambler-digital-solutions/scaraplate
url = https://github.com/rambler-digital-solutions/scaraplate
version =
[mypy]
check_untyped_defs = True
[mypy-cookiecutter.*]
ignore_missing_imports = True
[options]
include_package_data = True
install_requires =
click>=6
cookiecutter>=1.6,<3
jinja2>=2.7,<4
marshmallow>=2.15,<4
packaging
pyyaml>=3
setuptools
package_dir =
= src
packages = find:
python_requires = >=3.7
[options.entry_points]
console_scripts =
scaraplate = scaraplate.__main__:main
[options.extras_require]
develop =
black==23.3.0
coverage==7.2.7
flake8==5.0.4
isort==5.11.5
mypy==1.4.1
pylint==2.17.4
pytest==7.4.0
sphinx-rtd-theme==1.2.2
sphinx==4.3.2
types-PyYAML
types-setuptools
gitlab =
python-gitlab>=1.6.0,<4
[options.packages.find]
where = src
[tool:cookiecutter_context]
_template = new-python-project
coverage_fail_under = 98
metadata_author = Usermodel @ Rambler&Co
metadata_author_email = um@rambler-co.ru
metadata_description = Scaraplate is a wrapper around cookiecutter which allows to repeatedly rollup project templates onto concrete projects.
metadata_long_description = file: README.md
metadata_name = scaraplate
metadata_url = https://github.com/rambler-digital-solutions/scaraplate
mypy_enabled = 1
project_dest = scaraplate
project_monorepo_name =
python_package = scaraplate
[tool:pytest]
addopts =
-ra
--junitxml=junit.xml
--showlocals
--verbose
--verbose