forked from cookiecutter/cookiecutter
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.cfg
97 lines (87 loc) · 2.62 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
[metadata]
name = cookiecutter
url = https://github.com/cookiecutter/cookiecutter
project_urls =
Bug Tracker = https://github.com/cookiecutter/cookiecutter/issues
CI: GitHub = https://github.com/cookiecutter/cookiecutter/actions
Documentation = https://cookiecutter.readthedocs.io/
Source Code = https://github.com/cookiecutter/cookiecutter
description =
A command-line utility that creates projects from project
templates, e.g. creating a Python package project from a
Python package project template.
long_description = file: README.md
long_description_content_type = text/markdown
author = Audrey Feldroy
author_email = [email protected]
maintainer = Audrey Feldroy
maintainer_email = [email protected]
license = BSD
license_file = LICENSE
classifiers =
Development Status :: 5 - Production/Stable
Environment :: Console
Intended Audience :: Developers
Natural Language :: English
License :: OSI Approved :: BSD License
Programming Language :: Python :: 3 :: Only
Programming Language :: Python :: 3
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: Implementation :: CPython
Programming Language :: Python :: Implementation :: PyPy
Programming Language :: Python
Topic :: Software Development
keywords =
cookiecutter
Python
projects
project templates
Jinja2
skeleton
scaffolding
project directory
package
packaging
[options]
use_scm_version = True
python_requires = >=3.6
; package_dir =
; = src
packages = cookiecutter
zip_safe = False
# These are required during `setup.py` run:
setup_requires =
setuptools_scm>=1.15.0
setuptools_scm_git_archive>=1.0
install_requires =
binaryornot>=0.4.4
Jinja2>=2.7,<4.0.0
click>=7.0,<9.0.0
pyyaml>=5.3.1
jinja2-time>=0.2.0
python-slugify>=4.0.0
requests>=2.23.0
[options.entry_points]
console_scripts =
cookiecutter = cookiecutter.__main__:main
[flake8]
ignore = BLK100,E231,W503
# Excludes due to known issues or incompatibilities with black:
# BLK100: Black would make changes. https://pypi.org/project/flake8-black/
# W503: https://github.com/psf/black/search?q=W503&unscoped_q=W503
# E231: https://github.com/psf/black/issues/1202
statistics = 1
# black official is 88
max-line-length = 88
[bdist_wheel]
universal = false
[tool:pytest]
testpaths = tests
addopts = -vvv --cov-report term-missing --cov=cookiecutter
[doc8]
# TODO: Remove current max-line-lengh ignore in follow-up and adopt black limit.
# max-line-length = 88
ignore = D001