-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
98 lines (87 loc) · 2.14 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
# Project Configuration
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "django_signoffs"
version = "0.3.12"
requires-python = ">=3.8, <4.0"
description = 'A mico-framework for collecting lightweight, non-crypto "signatures" for virtually anything.'
readme = "README.md"
license = {file = "LICENSE"}
authors = [
{ name = "Joseph Fall", email = "[email protected]" }
]
keywords = ["django-signoffs",]
classifiers = [
"Development Status :: 2 - Pre-Alpha",
"License :: OSI Approved :: MIT License",
"Intended Audience :: Developers",
"Natural Language :: English",
"Programming Language :: Python :: 3",
"Framework :: Django",
]
dependencies = [
"django>=3.2,<5.0",
"persisting-theory",
"regex",
]
[project.optional-dependencies]
fsm = [
"django-fsm>=2.8,<=3.0.0",
]
docs = [
"sphinx",
"myst-parser",
"furo",
"linkify-it-py",
"sphinxcontrib_django",
"sphinx-autodoc2",
]
style = [
"black",
"isort",
"flake8",
"flake8-bugbear",
]
test = [
"tox",
"pytest",
"pytest-django",
"pytest-cov",
"pytest-sugar",
]
utils = [
"invoke",
"bumpver",
"build",
"twine",
"pip-tools",
]
[project.urls]
Homepage = "https://github.com/powderflask/django-signoffs"
Repository = "https://github.com/powderflask/django-signoffs"
Documentation = "https://django-signoffs.readthedocs.io"
[project.scripts]
"manage.py" = "django_signoffs:django_manage"
# Other Tools
[tool.setuptools]
include-package-data = true # True by default, declarations in MANIFEST.in
[tool.setuptools.packages.find]
include = ["signoffs", "signoffs.*"]
[tool.bumpver]
current_version = "0.3.12"
version_pattern = "MAJOR.MINOR.PATCH"
commit_message = "Bump version: {old_version} --> {new_version}"
commit = true
tag = true
push = true
[tool.bumpver.file_patterns]
"pyproject.toml" = ['version = "{version}"']
"signoffs/__init__.py" = ['__version__ = "{version}"']
"docs/source/conf.py" = ['version = "{version}"', 'release = "{version}"']
[tool.black]
target-version = ["py38","py39","py310","py311"]
[tool.isort]
profile = "black"
skip_gitignore = true