-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
107 lines (100 loc) · 2.58 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
[tool.poetry]
name = "django-sb-simple-migrations"
version = "0.9.0"
description = "Django migrations without unnecesary change alert triggers."
authors = [
"SoftButterfly Development Team <dev@softbutterfly.io>",
"zodiacfireworks <martin.vuelta@gmail.com>"
]
license = "MIT License"
readme = "README.md"
homepage = "https://gitlab.com/softbutterfly/open-source/django-sb-simple-migrations"
repository = "https://gitlab.com/softbutterfly/open-source/django-sb-simple-migrations"
documentation = "https://gitlab.com/softbutterfly/open-source/django-sb-simple-migrations/-/wikis"
keywords = ["Softbutterfly", "Django", "Migrations"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Web Environment",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Software Development :: Libraries :: Python Modules",
"Framework :: Django :: 4.2",
"Framework :: Django :: 5.0",
"Framework :: Django :: 5.1",
]
packages = [
{ include = "django_sb_simple_migrations", from = "src" }
]
include = [
"LICENSE.txt",
"CHANGELOG.md",
]
[tool.poetry.urls]
"Download" = "https://github.com/softbutterfly/django-sb-simple-migrations/archive/v0.9.0.tar.gz"
"Bug Tracker" = "https://github.com/softbutterfly/django-sb-simple-migrations/issues"
[tool.poetry.dependencies]
python = ">= 3.9.0, < 4.0.0"
Django = "< 6.0.0"
[tool.poetry.group.dev.dependencies]
autopep8 = "^2.3.1"
bandit = "^1.7.9"
black = "^24.8.0"
coverage = "^7.6.1"
flake8 = "^7.1.1"
flake8-black = "^0.3.6"
isort = "^5.13.2"
mypy = "^1.11.2"
pre-commit = "^3.8.0"
pydocstyle = "^6.3.0"
pylint = "^3.2.6"
pylint-django = "^2.5.5"
pytest = "^8.3.2"
pytest-cov = "^5.0.0"
pytest-django = "^4.8.0"
python-dotenv = "^1.0.1"
tbump = "^6.11.0"
tox = "^4.18.0"
[tool.black]
target_version = ['py39']
include = '\.pyi?$'
exclude = '''
/(\.git/
|\.eggs
|\.hg
|__pycache__
|\.cache
|\.ipynb_checkpoints
|\.mypy_cache
|\.pytest_cache
|\.tox
|\.venv
|_build
|buck-out
|build
|dist
|legacy
|example
)/
'''
[tool.pytest.ini_options]
DJANGO_SETTINGS_MODULE = "demoproject.settings"
pythonpath = "demoproject"
testpaths = "tests"
python_files = [
"**/test_*.py",
]
filterwarnings =[
"ignore::DeprecationWarning",
"ignore::PendingDeprecationWarning"
]
addopts = [
"--import-mode=importlib",
]
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"