forked from hakancelikdev/python-package
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.cfg
More file actions
66 lines (61 loc) · 1.78 KB
/
Copy pathsetup.cfg
File metadata and controls
66 lines (61 loc) · 1.78 KB
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
[metadata]
name = {{project-name}}
version = attr: {{project-name}}.__version__
url = https://{{project-name}}.hakancelik.dev/
author = Hakan Çelik
author_email = contact@hakancelik.dev
description = attr: {{project-name}}.__description__
long_description = file: README.md
long_description_content_type = text/markdown
license = GPL-3.0
keywords =
classifiers =
Development Status :: 1 - Planning
Intended Audience :: Developers
License :: OSI Approved :: GNU General Public License v3 (GPLv3)
Operating System :: OS Independent
Programming Language :: Python
Programming Language :: Python :: 3
Programming Language :: Python :: 3 :: Only
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: Implementation :: CPython
Topic :: Software Development :: Libraries :: Python Modules
project_urls =
Documentation = https://{{project-name}}.hakancelik.dev/
Issues = https://github.com/hakancelikdev/{{project-name}}/issues/
Changelog = https://{{project-name}}.hakancelik.dev/changelog
[options]
python_requires = >=3.8
include_package_data = true
zip_safe = true
packages =
mypkg
mypkg.subpkg
package_dir =
=src
install_requires =
[options.extras_require]
tests =
pytest==6.2.4
pytest-cov==2.12.1
docs =
mkdocs==1.3.0
mkdocs-material==8.3.6
mkdocs-markdownextradata-plugin==0.2.5
mkdocs-minify-plugin==0.5.0
mkdocs-git-revision-date-localized-plugin==1.0.1
[options.package_data]
* =
py.typed
[flake8]
exclude = build,.git,.tox,./tests/venv
extend-ignore = E203
[isort]
multi_line_output = 3
include_trailing_comma = True
force_grid_wrap = 0
use_parentheses = True
ensure_newline_before_comments = True
line_length = 79